-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
23 lines (23 loc) · 754 Bytes
/
Copy pathpackage.json
File metadata and controls
23 lines (23 loc) · 754 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{
"name": "stash",
"private": true,
"version": "0.6.5",
"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",
"seed": "npm run seed -w apps/api",
"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"
},
"devDependencies": {
"playwright-core": "^1.61.1"
}
}