-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.37 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": "surveyapp",
"version": "1.0.0",
"main": "index.js",
"engines": {
"node": "8.1.1",
"npm": "5.0.3"
},
"scripts": {
"start": "node index.js",
"server": "nodemon -e js,css index.js",
"client": "npm run start --prefix client",
"dev": "concurrently \"npm run server \" \"npm run client\" \"npm run localtunnel\"",
"style": "nodemon -e scss -x npm run sass --prefix client",
"dev": "concurrently \"npm run server \" \"npm run client\" \"npm run localtunnel\" \"npm run style \"",
"localtunnel": "./sendgrid-webhook-fix.sh",
"heroku-postbuild": "NPM_CONFIG_PRODUCTION=false npm install --prefix client && npm run build --prefix client"
},
"author": "",
"license": "ISC",
"description": "",
"dependencies": {
"axios": "^0.18.0",
"bcrypt-nodejs": "0.0.3",
"body-parser": "^1.18.2",
"concurrently": "^3.5.1",
"create-react-app": "^1.5.2",
"express": "^4.16.2",
"history": "^4.7.2",
"jwt-simple": "^0.5.1",
"localtunnel": "^1.8.3",
"lodash": "^4.17.5",
"mongoose": "^5.0.9",
"nodemon": "^1.17.1",
"passport": "^0.4.0",
"passport-jwt": "^3.0.1",
"passport-local": "^1.0.0",
"path-parser": "^3.0.1",
"react-router-dom": "^4.2.2",
"react-stripe-checkout": "^2.6.3",
"redux-form": "^7.3.0",
"save": "^2.3.2",
"sendgrid": "^5.2.3",
"stripe": "^5.5.0"
}
}