forked from 2006-cpu/virtual-velocity
-
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) · 897 Bytes
/
Copy pathpackage.json
File metadata and controls
25 lines (25 loc) · 897 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": "virtual-traders-monorepo",
"private": true,
"version": "1.0.0",
"workspaces": [
"frontend",
"backend"
],
"scripts": {
"install:all": "npm install && npm install --prefix frontend && npm install --prefix backend",
"dev": "concurrently \"npm run server:dev\" \"npm run client:dev\"",
"client:dev": "npm run dev --prefix frontend",
"client:build": "npm run build --prefix frontend",
"server:dev": "npm run dev --prefix backend",
"server:start": "npm start --prefix backend",
"db:build": "npm run db:build --prefix backend",
"server:build": "npm run build --prefix backend",
"build": "npm run client:build && npm run server:build && npm run db:build",
"test": "npm test --prefix backend",
"clean": "rm -rf node_modules frontend/node_modules backend/node_modules"
},
"devDependencies": {
"concurrently": "^8.2.2"
}
}