-
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) · 1.15 KB
/
Copy pathpackage.json
File metadata and controls
27 lines (27 loc) · 1.15 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
{
"name": "powerboard",
"private": true,
"version": "0.1.0",
"type": "module",
"workspaces": [
"apps/server",
"apps/web",
"packages/*"
],
"scripts": {
"dev": "concurrently -n server,web -c cyan,magenta \"npm run dev --workspace @powerboard/server\" \"npm run dev --workspace @powerboard/web\"",
"build": "npm run build --workspace @powerboard/schema && npm run build --workspace @powerboard/renderers && npm run build --workspace @powerboard/server && npm run build --workspace @powerboard/web",
"test": "vitest run",
"typecheck": "npm run typecheck --workspace @powerboard/schema && npm run typecheck --workspace @powerboard/renderers && npm run typecheck --workspace @powerboard/server && npm run typecheck --workspace @powerboard/web",
"mcp": "npm run mcp --workspace @powerboard/server",
"mcp:check": "npm run mcp:check --workspace @powerboard/server",
"cloud:safety": "tsx apps/server/src/cloudSafety.ts",
"sync:cloud": "npm run sync:cloud --workspace @powerboard/server"
},
"devDependencies": {
"@types/node": "^25.0.0",
"concurrently": "^9.2.1",
"typescript": "^5.9.3",
"vitest": "^4.0.14"
}
}