-
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) · 762 Bytes
/
package.json
File metadata and controls
25 lines (25 loc) · 762 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": "genucel",
"version": "1.0.0",
"description": "E-commerce app",
"engines": {
"node": "14.x",
"npm": "6.x"
},
"main": "server/server.js",
"scripts": {
"start": "if-env NODE_ENV=production && npm run start:prod || npm run start:dev",
"start:prod": "node server/server.js",
"start:dev": "concurrently \"cd server && npm run watch\" \"cd client && npm start\"",
"install": "cd server && npm i && cd ../client && npm i --production=false",
"seed": "cd server && npm run seed",
"heroku-postbuild": "cd client && npm run build",
"build": "cd client && npm run build",
"render-build": "npm install && npm run build"
},
"author": "",
"license": "ISC",
"dependencies": {
"if-env": "^1.0.4"
}
}