-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
21 lines (21 loc) · 950 Bytes
/
package.json
File metadata and controls
21 lines (21 loc) · 950 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{
"name": "stay-ops-planner",
"private": true,
"packageManager": "pnpm@9.15.4",
"engines": {
"node": ">=20"
},
"scripts": {
"dev": "corepack pnpm --filter @stay-ops/shared build && corepack pnpm --filter @stay-ops/db build && corepack pnpm --filter @stay-ops/audit build && corepack pnpm --filter @stay-ops/sync build && corepack pnpm --filter @stay-ops/web dev",
"build": "corepack pnpm -r run build",
"lint": "corepack pnpm -r run lint",
"test": "corepack pnpm -r run test",
"test:integration": "node ./scripts/test-integration.mjs",
"hosthub:smoke": "node ./scripts/hosthub-smoke.mjs",
"e2e:local": "node ./scripts/e2e-local.mjs",
"backup:pg": "node ./scripts/backup-postgres.mjs",
"backup:prune": "node ./scripts/backup-prune.mjs",
"backup:verify-restore": "node ./scripts/restore-verify-postgres.mjs",
"retention:prune": "corepack pnpm --filter @stay-ops/db run retention:prune"
}
}