-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
18 lines (18 loc) · 873 Bytes
/
Copy pathpackage.json
File metadata and controls
18 lines (18 loc) · 873 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
{
"name": "tony-menu",
"private": true,
"scripts": {
"health": "npm --workspace web run lint && npm --workspace web run test:run && node --test scripts/serve-static.test.mjs && npm --workspace backend run check && npm --workspace backend run test:run && npm --workspace backend run test:migration-sql && cd web/workers/chat && npm run test:run",
"initialize": "node scripts/initialize.mjs",
"config:generate": "node scripts/initialize.mjs --generate",
"verify:config": "node scripts/verify-config.mjs",
"backend:self-host": "npm --workspace backend run start:self-host",
"chat:self-host": "cd web/workers/chat && npm run start:self-host",
"web:self-host": "NEXT_IGNORE_INCORRECT_LOCKFILE=1 npm --workspace web run build && node scripts/serve-static.mjs web/out 3000"
},
"workspaces": [
"backend",
"web",
"packages/*"
]
}