forked from andrewpat24/hushpass
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.48 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
47
48
49
50
51
52
53
{
"name": "server",
"version": "1.0.0",
"description": "npm run {scriptName}",
"prodURL": "https://hush-hush.herokuapp.com/",
"main": "index.js",
"engines": {
"node": "^11",
"npm": "6.7.0"
},
"scripts": {
"start": "node index.js",
"server": "nodemon index.js",
"client": "npm run start --prefix client",
"dev": "concurrently \"npm run server\" \"npm run client\" ",
"heroku-postbuild": "NPM_CONFIG_PRODUCTION=false npm install --prefix client && npm run build --prefix client"
},
"author": "Andrew Patterson and Peter Malolepsy",
"license": "ISC",
"dependencies": {
"@sendgrid/mail": "^6.3.1",
"axios": "^0.18.0",
"body-parser": "^1.18.3",
"concurrently": "^4.1.0",
"cookie-session": "^2.0.0-beta.3",
"cors": "^2.8.5",
"crypto": "^1.0.1",
"dotenv": "^6.2.0",
"express": "^4.16.4",
"express-session": "^1.15.6",
"formidable": "^1.2.1",
"gridfs-stream": "^1.1.1",
"lodash": "^4.17.11",
"moment": "^2.24.0",
"mongoose": "^5.4.13",
"netlify-lambda": "^1.4.5",
"nodemon": "^1.18.10",
"passport": "^0.4.0",
"passport-google-oauth20": "^1.0.0",
"path-parser": "^4.2.0",
"process-env": "^1.1.0",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"react-dropzone": "^10.1.5",
"react-redux": "^7.0.2",
"react-router-dom": "^5.0.0",
"react-scripts": "^2.1.8",
"redux": "^4.0.1",
"redux-form": "^8.2.0",
"redux-thunk": "^2.3.0",
"stripe": "^6.28.0"
}
}