-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 1011 Bytes
/
Copy pathpackage.json
File metadata and controls
30 lines (30 loc) · 1011 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
26
27
28
29
30
{
"name": "another-ocr-monorepo",
"private": true,
"version": "1.0.0",
"description": "Root for the Another OCR application monorepo",
"workspaces": [
"client",
"server",
"shared-lib",
"auth-service"
],
"scripts": {
"dev": "concurrently \"npm run dev:client\" \"npm run dev:server\" \"npm run dev:auth\"",
"dev:init": "npm install && npm run build:shared && npm run build:auth && npm run build:server",
"setup": "npm run build:shared && npm run build:auth && npm run install:all",
"install:all": "npm install",
"build": "npm run build -ws --if-present",
"build:client": "npm run build -w client",
"build:server": "npm run build -w server",
"build:shared": "npm run build -w shared-lib",
"dev:client": "npm run dev -w client",
"dev:server": "npm run dev -w server",
"lint": "npm run lint -ws --if-present",
"test": "npm run test -ws --if-present"
},
"devDependencies": {
"concurrently": "^8.2.2",
"rimraf": "^5.0.7"
}
}