-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
20 lines (20 loc) · 853 Bytes
/
Copy pathpackage.json
File metadata and controls
20 lines (20 loc) · 853 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{
"name": "airchat",
"version": "1.0.0",
"description": "AIrChat - A production-ready chat interface with SSE streaming",
"scripts": {
"dev": "concurrently --kill-others-on-fail --prefix-colors \"bgBlue.bold,bgGreen.bold\" --names \"backend,frontend\" \"npm run dev:backend\" \"npm run dev:frontend\"",
"dev:backend": "cd backend && npm run dev",
"dev:frontend": "cd frontend && npm run dev",
"build": "cd frontend && npm run build",
"start": "cd backend && npm start",
"test": "npm run test:backend && npm run test:frontend",
"test:backend": "cd backend && npm test",
"test:frontend": "cd frontend && npm test",
"install:all": "npm install && cd backend && npm install && cd ../frontend && npm install",
"cleanup": "./kill-dev-processes.sh"
},
"devDependencies": {
"concurrently": "^8.2.2"
}
}