-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
31 lines (31 loc) · 863 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
27
28
29
30
31
{
"name": "wedding-registry",
"version": "0.1.0",
"private": true,
"dependencies": {
"body-parser": "latest",
"concurrently": "^3.6.0",
"dotenv": "^6.0.0",
"express": "^4.16.3",
"heroku-ssl-redirect": "^0.0.4",
"mongodb": "^3.1.1",
"prop-types": "^15.6.1",
"react": "^16.3.1",
"react-dom": "^16.3.1",
"react-scripts": "1.1.5"
},
"scripts": {
"dev-node": "node $NODE_DEBUG_OPTION server.js",
"dev-react": "react-scripts start",
"dev-both": "concurrently --kill-others-on-fail 'npm run dev-node' 'npm run dev-react'",
"start": "node server.js",
"build": "react-scripts build",
"test": "react-scripts test --env=jsdom",
"eject": "react-scripts eject",
"heroku-postbuild": "yarn build "
},
"devDependencies": {
"prettier": "^1.11.1"
},
"proxy": "http://localhost:8080"
}