-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
26 lines (26 loc) · 897 Bytes
/
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
{
"name": "node_react_startup_structure",
"version": "1.0.0",
"description": "The Node React Startup Structure",
"main": "server/app.js",
"scripts": {
"start": "if-env NODE_ENV=production && npm run start:prod || npm run start:dev",
"start:prod": "cd server && npm run start",
"start:dev": "concurrently \"npm run server\" \"npm run client\" -k",
"client": "cd client && npm run start",
"server": "cd server && npm run dev",
"install": "cd client && npm install && cd ../server && npm install",
"build": "cd client && npm run build"
},
"author": "Anthony Rivas",
"license": "MIT",
"bugs": {
"url": "https://github.com/anthonyrivas/Node-React-Startup-Structure/issues"
},
"devDependencies": {
"concurrently": "^4.1.2"
},
"dependencies": {
"if-env": "^1.0.4"
}
}