-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
27 lines (27 loc) · 858 Bytes
/
package.json
File metadata and controls
27 lines (27 loc) · 858 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
{
"name": "chat-bot",
"private": true,
"workspaces": [
"packages/backend",
"packages/frontend"
],
"scripts": {
"dev": "concurrently -n backend,frontend -c blue,green \"npm run dev --workspace=backend\" \"npm run dev --workspace=frontend\"",
"dev:lan": "npm run dev",
"dev:backend": "npm run dev --workspace=backend",
"dev:frontend": "npm run dev --workspace=frontend",
"start": "npm run start --workspace=backend",
"serve": "npm run build && npm run start",
"build": "npm run build --workspace=frontend",
"lint": "npm run lint --workspaces --if-present",
"test": "npm run test --workspaces --if-present",
"test:lmstudio": "npm run test:lmstudio --workspace=backend"
},
"devDependencies": {
"concurrently": "^8.2.2"
},
"overrides": {
"react": "19.1.0",
"react-dom": "19.1.0"
}
}