-
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) · 985 Bytes
/
Copy pathpackage.json
File metadata and controls
29 lines (29 loc) · 985 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
{
"name": "questory",
"version": "0.1.0",
"private": true,
"description": "Self-hosted family quest app for playful everyday tasks.",
"license": "MIT",
"workspaces": [
"apps/backend",
"apps/frontend"
],
"scripts": {
"dev": "npm run dev --workspaces",
"dev:backend": "npm run start:dev -w apps/backend",
"dev:frontend": "npm run dev -w apps/frontend",
"build": "npm run build --workspaces",
"build:backend": "npm run build -w apps/backend",
"build:frontend": "npm run build -w apps/frontend",
"lint": "npm run lint --workspaces --if-present",
"test": "npm run test --workspaces --if-present",
"portainer:redeploy": "node scripts/portainer-redeploy.mjs",
"prisma:generate": "npm run prisma:generate -w apps/backend",
"prisma:validate": "npm exec -w apps/backend -- prisma validate",
"prisma:migrate": "npm run prisma:migrate -w apps/backend"
},
"engines": {
"node": ">=20.19.0",
"npm": ">=10.0.0"
}
}