-
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) · 988 Bytes
/
Copy pathpackage.json
File metadata and controls
27 lines (27 loc) · 988 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": "monitor-system",
"private": true,
"version": "1.0.0",
"description": "Remote monitoring and operations control system",
"scripts": {
"dev:server": "pnpm --filter server dev",
"dev:dashboard": "pnpm --filter dashboard dev",
"dev:agent": "cd agent && go run .",
"build:shared": "pnpm --filter @monitor/shared build",
"build:server": "pnpm --filter server build",
"build:dashboard": "pnpm --filter dashboard build",
"build:agent": "node scripts/build-agent.mjs windows",
"build:agent:linux": "node scripts/build-agent.mjs linux",
"build:agent:macos": "node scripts/build-agent.mjs macos",
"build:agent:all": "node scripts/build-agent.mjs all",
"build": "pnpm build:shared && pnpm build:server && pnpm build:dashboard",
"start": "pnpm build && pnpm --filter server start",
"db:sync": "pnpm --filter server db:sync"
},
"engines": {
"node": ">=20.0.0"
},
"devDependencies": {
"cross-env": "^10.1.0"
}
}