-
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) · 813 Bytes
/
package.json
File metadata and controls
27 lines (27 loc) · 813 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": "commandcode-web-ui",
"version": "0.1.0",
"private": true,
"description": "Team orchestration dashboard for Command Code agents",
"workspaces": [
"packages/*"
],
"scripts": {
"dev": "concurrently \"npm run dev:server\" \"npm run dev:client\"",
"dev:client": "npm run dev --workspace=packages/client",
"dev:server": "npm run dev --workspace=packages/server",
"build": "turbo run build",
"build:shared": "npm run build --workspace=packages/shared",
"build:server": "npm run build --workspace=packages/server",
"build:client": "npm run build --workspace=packages/client",
"clean": "turbo run clean"
},
"devDependencies": {
"concurrently": "^9.1.2",
"turbo": "^2.4.4",
"typescript": "~5.7.3"
},
"engines": {
"node": ">=20.0.0"
}
}