-
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) · 846 Bytes
/
package.json
File metadata and controls
27 lines (27 loc) · 846 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": "dancode",
"version": "0.1.0",
"private": true,
"engines": {
"node": "^20.19.0 || >=22.12.0"
},
"scripts": {
"dev": "concurrently -n shellhost,server,client -c magenta,blue,green \"npm run dev -w shellhost\" \"npm run dev -w server\" \"npm run dev -w client\"",
"build": "npm run build -w client",
"test": "npm test -w shellhost && npm test -w server && npm test -w client",
"test:e2e": "npm run test:e2e -w server",
"test:e2e:shellhost": "npm run test:e2e:shellhost -w server",
"test:perf": "node perf/run.mjs",
"test:perf:quick": "node perf/run.mjs --quick",
"check:setup": "node bin/check-setup.mjs",
"healthcheck": "node bin/dancode-healthcheck.mjs"
},
"workspaces": [
"shellhost",
"server",
"client"
],
"devDependencies": {
"concurrently": "^9.1.2"
}
}