-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
22 lines (22 loc) · 753 Bytes
/
package.json
File metadata and controls
22 lines (22 loc) · 753 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{
"name": "typescript-claude-chat",
"version": "1.0.0",
"main": "index.js",
"scripts": {
"client": "cd client && npm run dev",
"server": "cd server && npm run dev",
"dev": "concurrently \"npm run server\" \"npm run client\"",
"install:all": "npm install && cd client && npm install && cd ../server && npm install",
"build": "cd client && npm run build && cd ../server && npm run build",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [],
"author": "",
"license": "MIT",
"description": "TypeScript project with Claude AI API server and chat bot client using Socket.io",
"devDependencies": {
"@types/dexie": "^1.3.32",
"@types/jest": "^29.5.14",
"concurrently": "^5.3.0"
}
}