-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 1.32 KB
/
package.json
File metadata and controls
31 lines (31 loc) · 1.32 KB
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
28
29
30
31
{
"name": "hack-ncstate",
"private": true,
"workspaces": [
"apps/*",
"packages/*",
"scripts"
],
"scripts": {
"predev:server": "npm -w @unblock/common run build",
"dev:server": "npm -w apps/server run dev",
"predev:agent": "npm -w @unblock/common run build",
"dev:agent": "npm -w apps/agent run dev",
"dev:publisher": "npm -w @unblock/common run build && cross-env AGENT_MODE=publisher npm -w apps/agent run dev",
"dev:subscriber": "npm -w @unblock/common run build && cross-env AGENT_MODE=subscriber npm -w apps/agent run dev",
"dev:supervisor": "npm -w @unblock/common run build && cross-env AGENT_MODE=supervisor npm -w apps/agent run dev",
"test": "npm run typecheck && npm run build",
"build": "npm -w packages/common run build && npm -w apps/server run build && npm -w apps/agent run build",
"typecheck": "npm -w packages/common run typecheck && npm -w apps/server run typecheck && npm -w apps/agent run typecheck",
"scripts:gen-keypairs": "npm -w scripts run gen-keypairs",
"scripts:prefund-agent": "npm -w scripts run prefund-agent",
"scripts:print-pubkey": "npm -w scripts run print-pubkey",
"seed": "bash scripts/seed-tasks.sh"
},
"devDependencies": {
"concurrently": "^9.0.0",
"cross-env": "^10.1.0",
"tsx": "^4.19.0",
"typescript": "^5.6.3"
}
}