-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
46 lines (46 loc) · 1.14 KB
/
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
{
"name": "heroku-cra-node",
"version": "1.0.0",
"description": "How to use create-react-app with a custom Node API on Heroku",
"engines": {
"node": "6.11.x"
},
"scripts": {
"start": "node server",
"heroku-postbuild": "cd react-ui/ && npm install && npm install --only=dev --no-shrinkwrap && npm run build"
},
"cacheDirectories": [
"node_modules",
"react-ui/node_modules"
],
"dependencies": {
"axios": "^0.17.1",
"body-parser": "^1.18.2",
"express": "^4.14.1",
"jshint": "^2.9.5",
"mongoose": "^4.13.7",
"numjs": "^0.15.1",
"react-addons-css-transition-group": "^15.6.2",
"react-modal": "^3.1.10",
"react-places-autocomplete": "^5.4.3",
"react-router": "^4.2.0",
"react-router-dom": "^4.2.2",
"react-scrolling-carousel": "^1.0.2",
"react-transition-group": "^1.2.1",
"react-waypoint": "^8.0.0",
"save": "^2.3.2",
"waypoints": "^4.0.1"
},
"repository": {
"type": "git",
"url": "https://github.com/mars/heroku-cra-node.git"
},
"keywords": [
"node",
"heroku",
"create-react-app",
"react"
],
"license": "MIT",
"devDependencies": {}
}