-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
26 lines (26 loc) · 845 Bytes
/
package.json
File metadata and controls
26 lines (26 loc) · 845 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
{
"name": "customer-service-platform",
"version": "0.1.0",
"private": true,
"description": "Human-in-the-Loop Customer Service Platform with AI Voice Agent and Copilot",
"workspaces": [
"apps/*",
"packages/*"
],
"scripts": {
"dev": "npm run dev --workspaces --if-present",
"dev:backend": "npm run dev -w backend",
"dev:web": "npm run dev -w web-client",
"build": "npm run build --workspaces --if-present",
"db:generate": "npm run generate -w database",
"db:migrate": "npm run migrate -w database",
"db:seed": "npm run seed -w database",
"db:studio": "npm run studio -w database",
"docker:up": "docker-compose up -d",
"docker:down": "docker-compose down",
"clean": "rm -rf node_modules apps/*/node_modules packages/*/node_modules"
},
"engines": {
"node": ">=18.0.0"
}
}