-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
20 lines (20 loc) · 709 Bytes
/
Copy pathpackage.json
File metadata and controls
20 lines (20 loc) · 709 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{
"name": "drop",
"private": true,
"version": "0.5.0",
"workspaces": [
"apps/*",
"packages/*"
],
"scripts": {
"dev:api": "npm run dev -w apps/api",
"dev:web": "npm run dev -w apps/web",
"build:shared": "npm run build -w packages/shared",
"build": "npm run build:shared && npm run build -w apps/api && npm run build -w apps/web",
"prisma:generate": "npm run prisma:generate -w apps/api",
"prisma:migrate": "npm run prisma:migrate -w apps/api",
"generate:icons": "node scripts/generate-icons.mjs",
"test": "npm run build:shared && npm run test -w apps/api && npm run test -w apps/web",
"lint": "npm run lint -w apps/api && npm run lint -w apps/web"
}
}