-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 733 Bytes
/
Copy pathpackage.json
File metadata and controls
29 lines (29 loc) · 733 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
{
"name": "duplications-detector",
"version": "1.0.0",
"description": "cl misuse detector",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "tsc",
"start": "ts-node src/index.ts",
"start:dev": "ts-node-dev --respawn src/index.ts"
},
"author": "Sahar Shemesh",
"license": "ISC",
"dependencies": {
"@anthropic-ai/sdk": "^0.27.3",
"body-parser": "^1.20.3",
"express": "^4.21.0",
"glob": "^11.0.0",
"reflect-metadata": "^0.2.2",
"tsyringe": "^4.8.0"
},
"devDependencies": {
"@types/express": "^4.17.21",
"@types/node": "^22.5.5",
"ts-node": "^10.9.2",
"ts-node-dev": "^2.0.0",
"typescript": "^5.6.2"
}
}