-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
executable file
·40 lines (40 loc) · 986 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
32
33
34
35
36
37
38
39
40
{
"name": "loyalty",
"version": "1.0.0",
"description": "How to use create-react-app with a custom Node API on Heroku",
"engines": {
"node": "^8.9.x"
},
"scripts": {
"start": "node server",
"heroku-postbuild": "cd react-ui/ && yarn && yarn build",
"debug": "node --nolazy --inspect-brk=9229 server/index.js"
},
"cacheDirectories": [
"node_modules",
"react-ui/node_modules"
],
"dependencies": {
"axios": "^0.17.1",
"body-parser": "^1.18.2",
"cors": "^2.8.4",
"dotenv": "^4.0.0",
"express": "^4.14.1",
"jws-jwk": "^0.1.4",
"jwt-simple": "^0.5.1",
"lodash": "^4.17.4",
"mongoose": "^4.13.7",
"morgan": "^1.9.0",
"newrelic": "^2.4.2",
"react-router-dom": "^4.2.2",
"redux": "^3.7.2",
"redux-thunk": "^2.2.0",
"socket.io": "^2.0.4"
},
"repository": {
"type": "git",
"url": "https://github.com/LoyaltyPlant/lp-hackathon.git"
},
"license": "MIT",
"devDependencies": {}
}