-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
31 lines (31 loc) · 1.12 KB
/
package.json
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
{
"name": "@classity/monorepo",
"version": "1.0.0",
"workspaces": {
"packages": [
"dto",
"frontend",
"api"
]
},
"scripts": {
"start:dev": "concurrently -n api,frontend -c red,blue \"npm run api:start:dev\" \"npm run frontend:start:dev\"",
"start:prod": "concurrently -n api,frontend -c red,blue \"npm run api:start:prod\" \"npm run frontend:start:prod\"",
"test": "npm run test --workspaces",
"api:test": "npm run test --workspace api",
"api:start:dev": "npm run start:dev --workspace api",
"api:start:prod": "npm run start:prod --workspace api",
"frontend:start:dev": "npm run dev --workspace frontend",
"frontend:start:prod": "npm run start:prod --workspace frontend",
"frontend:build": "npm run build --workspace frontend",
"dto:build": "npm run build --workspace dto",
"preinstall": "npm run dto:build",
"postinstall": "npm run build --workspace api"
},
"dependencies": {
"concurrently": "^6.2.0"
},
"engines": {
"node": "v16.4.0"
}
}