-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (48 loc) · 1.12 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
{
"name": "my-app",
"version": "0.1.0",
"engines": {
"node": "10.16.3"
},
"private": true,
"dependencies": {
"@sendgrid/mail": "^6.4.0",
"aws-sdk": "^2.413.0",
"axios": "^0.19.0",
"bcrypt": "^3.0.2",
"body-parser": "^1.19.0",
"cookie-parser": "^1.4.3",
"dotenv": "^8.1.0",
"express": "^4.16.4",
"express-session": "^1.15.6",
"history": "^4.7.2",
"jsonwebtoken": "^8.3.0",
"mongoose": "^5.7.5",
"mongoose-unique-validator": "^2.0.2",
"nodemailer": "^6.2.1",
"passport": "^0.4.0",
"passport-local": "^1.0.0",
"react": "^16.6.1",
"react-dom": "^16.6.1",
"react-stripe-elements": "^3.0.0",
"react-transition-group": "^4.2.2",
"stripe": "^6.31.1"
},
"scripts": {
"start": "node server.js",
"client": "cd client && npm run start",
"install": "cd client && npm install;",
"build": "cd client && npm run build",
"heroku-postbuild": "npm run build"
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
],
"devDependencies": {}
}