-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
27 lines (27 loc) · 987 Bytes
/
package.json
File metadata and controls
27 lines (27 loc) · 987 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": "deadlock-ui-monorepo",
"private": true,
"version": "1.3.2",
"workspaces": [
"packages/*",
"docs"
],
"scripts": {
"dev": "npm run build:core && concurrently -n core,sync,docs -c blue,yellow,green \"npm -w @deadlock-api/ui-core run dev\" \"node scripts/watch-copy.mjs\" \"npm -w docs run start\"",
"build": "npm -w @deadlock-api/ui-core run build && npm -w @deadlock-api/ui-react -w @deadlock-api/ui-vue run build",
"build:core": "npm -w @deadlock-api/ui-core run build",
"build:react": "npm -w @deadlock-api/ui-react run build",
"build:vue": "npm -w @deadlock-api/ui-vue run build",
"docs": "npm run build:core && npm -w docs run start",
"docs:build": "npm run build:core && npm -w docs run build",
"start": "npm -w @deadlock-api/ui-core run start",
"codegen": "node scripts/generate-class-names.mjs"
},
"engines": {
"node": ">=22",
"npm": ">=7"
},
"devDependencies": {
"concurrently": "^9.2.1"
}
}