-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (45 loc) · 1.98 KB
/
package.json
File metadata and controls
50 lines (45 loc) · 1.98 KB
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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
{
"name": "robbie-bylawyer",
"version": "1.0.0",
"private": true,
"description": "Combined parliamentary procedure application with bylaws version control",
"workspaces": [
"shared",
"backend-node",
"backend-bylawyer",
"frontend-unified",
"frontend-robbie",
"frontend-bylawyer",
"mobile"
],
"scripts": {
"install:all": "npm install",
"dev": "concurrently \"npm run dev:backend\" \"npm run dev:frontend-unified\"",
"dev:unified": "concurrently \"npm run dev:backend\" \"npm run dev:frontend-unified\"",
"dev:robbie": "concurrently \"npm run dev:backend\" \"npm run dev:frontend-robbie\"",
"dev:bylawyer": "concurrently \"npm run dev:backend\" \"npm run dev:frontend-bylawyer\"",
"dev:legacy": "concurrently \"npm run dev:backend\" \"npm run dev:frontend-robbie\" \"npm run dev:frontend-bylawyer\"",
"dev:backend": "npm run dev -w backend-node",
"dev:backend-robbie": "npm run dev -w backend-node",
"dev:backend-bylawyer": "npm run dev -w backend-bylawyer",
"dev:frontend-unified": "npm run dev -w frontend-unified",
"dev:frontend-robbie": "npm run dev -w frontend-robbie",
"dev:frontend-bylawyer": "npm run dev -w frontend-bylawyer",
"build": "npm run build:shared && npm run build:backends && npm run build:frontends",
"build:shared": "npm run build -w shared",
"build:backends": "npm run build -w backend-node && npm run build -w backend-bylawyer",
"build:frontends": "npm run build -w frontend-unified && npm run build -w frontend-robbie && npm run build -w frontend-bylawyer",
"test": "npm run test -w frontend-robbie",
"test:coverage": "npm run test:coverage -w frontend-robbie",
"db:generate": "npm run db:generate -w backend-node",
"db:push": "npm run db:push -w backend-node",
"db:migrate": "npm run db:migrate -w backend-node",
"db:studio": "npm run db:studio -w backend-node"
},
"devDependencies": {
"concurrently": "^8.2.2"
},
"engines": {
"node": ">=18.0.0"
}
}