-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 1.44 KB
/
Copy pathpackage.json
File metadata and controls
29 lines (29 loc) · 1.44 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
{
"name": "pwrup-workspace",
"private": true,
"version": "0.1.0",
"description": "PWRUP admin + comp workspace",
"scripts": {
"dev:admin": "pnpm --filter @pwrup/admin dev",
"dev:comp": "pnpm --filter @pwrup/comp dev",
"dev:debug": "pnpm --filter @pwrup/debug dev",
"renderer:comp": "pnpm --filter @pwrup/comp dev:renderer",
"renderbuild:comp": "pnpm --filter @pwrup/comp build:renderer",
"renderstart:comp": "pnpm --filter @pwrup/comp start:renderer",
"sync:pathplanner:dry": "./scripts/sync-pathplanner-from-fir.sh",
"sync:pathplanner": "./scripts/sync-pathplanner-from-fir.sh --apply",
"sync:autos:dry": "./scripts/sync-pathplanner-from-fir.sh --autos-only",
"sync:autos": "./scripts/sync-pathplanner-from-fir.sh --apply --autos-only",
"build:admin": "pnpm --filter @pwrup/admin build",
"build:comp": "pnpm --filter @pwrup/comp build",
"build:debug": "pnpm --filter @pwrup/debug build",
"dist:admin": "pnpm --filter @pwrup/admin dist",
"dist:comp": "pnpm --filter @pwrup/comp dist",
"dist:debug": "pnpm --filter @pwrup/debug dist",
"start:admin": "pnpm --filter @pwrup/admin start",
"start:comp": "pnpm --filter @pwrup/comp start",
"start:debug": "pnpm --filter @pwrup/debug start",
"build:all": "pnpm -r --filter @pwrup/admin --filter @pwrup/comp --filter @pwrup/debug build",
"dist:all": "pnpm -r --filter @pwrup/admin --filter @pwrup/comp --filter @pwrup/debug dist"
}
}