-
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) · 884 Bytes
/
package.json
File metadata and controls
27 lines (27 loc) · 884 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": "random-dance-generator",
"private": true,
"workspaces": [
"apps/*",
"packages/*"
],
"scripts": {
"dev": "npm-run-all -p dev:webui dev:desktop",
"dev:webui": "npm --workspace apps/webui run dev",
"dev:desktop": "npm --workspace apps/desktop run dev",
"build": "npm run build:webui && npm run build:desktop",
"build:webui": "npm --workspace apps/webui run build",
"build:desktop": "npm --workspace apps/desktop run build",
"test": "node test/test-clipping-configuration.js",
"test:integration": "node test/test-clipping-integration.js",
"test:card-model": "node test/test-card-model.mjs",
"test:all": "npm run test && npm run test:integration && npm run test:card-model"
},
"devDependencies": {
"npm-run-all": "^4.1.5"
},
"dependencies": {
"p-limit": "^7.2.0",
"react-router-dom": "^7.12.0"
}
}