-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.02 KB
/
Copy pathpackage.json
File metadata and controls
40 lines (40 loc) · 1.02 KB
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
30
31
32
33
34
35
36
37
38
39
40
{
"name": "sandbox",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"dev": "ts-node src/server.ts",
"build": "tsc && cp -r src/public dist/public && cp src/system-prompt.md src/tools-prompt.md dist/",
"start": "node dist/server.js",
"test": "jest",
"test:unit": "jest tests/unit",
"test:api": "jest tests/api",
"test:e2e": "jest tests/e2e"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@anthropic-ai/claude-agent-sdk": "^0.2.81",
"@types/express": "^5.0.6",
"@types/node": "^25.5.0",
"@types/pg": "^8.20.0",
"@types/swagger-ui-express": "^4.1.8",
"@types/ws": "^8.18.1",
"dotenv": "^17.3.1",
"express": "^5.2.1",
"pg": "^8.20.0",
"swagger-ui-express": "^5.0.1",
"ts-node": "^10.9.2",
"typescript": "^5.9.3",
"ws": "^8.20.0"
},
"devDependencies": {
"@types/jest": "^30.0.0",
"@types/supertest": "^7.2.0",
"jest": "^30.3.0",
"supertest": "^7.2.2",
"ts-jest": "^29.4.6"
}
}