-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
25 lines (25 loc) · 841 Bytes
/
Copy pathpackage.json
File metadata and controls
25 lines (25 loc) · 841 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
{
"name": "scripture",
"private": true,
"version": "1.0.0",
"workspaces": [
"apps/*",
"packages/*"
],
"scripts": {
"dev": "concurrently -n api,web -c blue,green \"npm run dev -w @scripture/api\" \"npm run dev -w @scripture/web\"",
"dev:api": "npm run dev -w @scripture/api",
"dev:web": "npm run dev -w @scripture/web",
"build": "npm run build -w @scripture/web",
"lint": "npm run lint -w @scripture/web",
"preview": "npm run preview -w @scripture/web",
"db:generate": "npm run generate -w @scripture/db",
"db:migrate": "npm run migrate -w @scripture/db",
"db:migrate:deploy": "npm run migrate:deploy -w @scripture/db",
"db:studio": "npm run studio -w @scripture/db",
"start:api": "npm run start -w @scripture/api"
},
"devDependencies": {
"concurrently": "^9.1.0"
}
}