-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
22 lines (22 loc) · 859 Bytes
/
package.json
File metadata and controls
22 lines (22 loc) · 859 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{
"name": "pcb-kb-zordex",
"private": true,
"version": "0.1.0",
"workspaces": [
"apps/*",
"packages/*"
],
"scripts": {
"dev": "concurrently -n api,dashboard -c green,blue \"npm run dev -w @pcb-kb-zordex/api\" \"npm run dev -w @pcb-kb-zordex/dashboard\"",
"build": "npm run build -w @pcb-kb-zordex/protocol && npm run build -w @pcb-kb-zordex/data && npm run build -w @pcb-kb-zordex/api && npm run build -w @pcb-kb-zordex/dashboard && npm run build -w @pcb-kb-zordex/extension-builder",
"init:db": "npm run init -w @pcb-kb-zordex/data",
"sync:extension": "npm run sync -w @pcb-kb-zordex/extension-builder",
"build:extension": "npm run build -w @pcb-kb-zordex/extension-builder"
},
"devDependencies": {
"@types/node": "^24.5.2",
"concurrently": "^9.2.1",
"tsx": "^4.20.6",
"typescript": "^5.9.3"
}
}