-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
21 lines (21 loc) · 773 Bytes
/
package.json
File metadata and controls
21 lines (21 loc) · 773 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{
"name": "parcelpro-monorepo",
"version": "1.0.0",
"private": true,
"description": "ParcelPro monorepo for backend and frontend.",
"scripts": {
"install": "npm run install:backend && npm run install:frontend",
"install:backend": "cd backend && npm install && cd ..",
"install:frontend": "cd frontend && npm install && cd ..",
"postinstall": "npm run install:backend && npm run install:frontend",
"build": "npm run build:prod || npm run build:dev",
"build:prod": "cd frontend && cross-env BUILD_PATH=../build npm run build && cd ..",
"build:dev": "cd frontend && npm run build",
"server": "npm start --prefix backend",
"start": "npm run server"
},
"dependencies": {
"cross-env": "^7.0.3"
},
"devDependencies": {}
}