-
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) · 911 Bytes
/
Copy pathpackage.json
File metadata and controls
21 lines (21 loc) · 911 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{
"name": "streamforge",
"private": true,
"workspaces": [
"backend",
"frontend"
],
"scripts": {
"dev": "docker compose up --build",
"backend:dev": "npm --workspace backend run dev",
"frontend:dev": "npm --workspace frontend run dev",
"backend:build": "npm --workspace backend run build",
"frontend:build": "npm --workspace frontend run build",
"prisma:validate": "npm --workspace backend run prisma:validate",
"prisma:generate": "npm --workspace backend run prisma:generate",
"docker:build": "docker compose build",
"validate:backend": "npm --workspace backend run prisma:format && npm --workspace backend run prisma:validate && npm --workspace backend run prisma:generate && npm --workspace backend run build",
"validate:frontend": "npm --workspace frontend run build",
"validate:all": "npm run validate:backend && npm run validate:frontend"
}
}