-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 921 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 921 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
30
31
32
33
{
"name": "claude-code-session-manager",
"version": "0.1.0",
"private": true,
"type": "module",
"scripts": {
"dev": "concurrently -n api,web -c cyan,green \"npm:dev:api\" \"npm:dev:web\"",
"dev:api": "tsx watch server/index.ts",
"dev:web": "vite --host 127.0.0.1",
"build": "tsc --noEmit && vite build",
"start": "NODE_ENV=production tsx server/index.ts"
},
"dependencies": {
"@anthropic-ai/claude-agent-sdk": "^0.2.116",
"@vitejs/plugin-react": "^5.1.1",
"concurrently": "^9.2.1",
"cors": "^2.8.5",
"express": "^5.2.1",
"lucide-react": "^0.556.0",
"react": "^19.2.3",
"react-dom": "^19.2.3",
"tsx": "^4.21.0",
"vite": "^7.3.0"
},
"devDependencies": {
"@types/cors": "^2.8.19",
"@types/express": "^5.0.6",
"@types/node": "^25.0.3",
"@types/react": "^19.2.7",
"@types/react-dom": "^19.2.3",
"typescript": "^5.9.3"
}
}