-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
26 lines (26 loc) · 831 Bytes
/
Copy pathpackage.json
File metadata and controls
26 lines (26 loc) · 831 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
{
"name": "storyboard-collab-suite",
"version": "1.0.0",
"private": true,
"workspaces": [
"apps/*",
"packages/*"
],
"scripts": {
"dev": "concurrently -n backend,frontend -c cyan,magenta \"npm run dev -w apps/backend\" \"npm run dev -w apps/frontend\"",
"build": "npm run build -w packages/shared && npm run build -w apps/backend && npm run build -w apps/frontend",
"start": "npm run start -w apps/backend",
"prisma:generate": "npm run prisma:generate -w apps/backend",
"prisma:migrate": "npm run prisma:migrate -w apps/backend",
"prisma:deploy": "npm run prisma:deploy -w apps/backend",
"seed": "npm run seed -w apps/backend"
},
"devDependencies": {
"concurrently": "^9.1.2",
"typescript": "^5.8.3"
},
"engines": {
"node": ">=20.0.0",
"npm": ">=10.0.0"
}
}