-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 947 Bytes
/
Copy pathpackage.json
File metadata and controls
30 lines (30 loc) · 947 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
28
29
30
{
"name": "paceandpush",
"version": "0.1.0",
"private": true,
"packageManager": "[email protected]",
"engines": {
"node": "24.x"
},
"workspaces": [
"apps/web",
"packages/*"
],
"scripts": {
"dev": "npm run dev -w @paceandpush/web",
"build": "npm run legal:check && npm run build:web",
"build:web": "npm run build -w @paceandpush/web",
"vercel:build": "node scripts/vercel-build.mjs",
"legal:check": "node scripts/check-legal.mjs",
"db:migrate": "npm run db:migrate -w @paceandpush/web",
"db:migrations:check": "npm run db:migrations:check -w @paceandpush/web",
"audit:prod": "npm audit --omit=dev --audit-level=high",
"test:e2e": "playwright test",
"typecheck": "npm run typecheck --workspaces --if-present",
"test": "npm run test --workspaces --if-present",
"lint": "npm run lint --workspaces --if-present"
},
"devDependencies": {
"@playwright/test": "^1.61.1"
}
}