-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
59 lines (59 loc) · 1.7 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
54
55
56
57
58
59
{
"name": "cravejs",
"version": "1.0.0",
"description": "FullStack React Web Development articles and resources. My online documentation to becoming a fullstack developer",
"main": "server.js",
"scripts": {
"start": "node server.js",
"server": "nodemon server.js",
"client-install": "npm install --prefix client",
"client": "npm 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"
},
"engines": {
"node": ">8.11.0",
"npm": ">=5.6.0"
},
"author": "Alex Quasar",
"license": "MIT",
"dependencies": {
"@sendgrid/mail": "^6.3.1",
"bcryptjs": "^2.4.3",
"body-parser": "^1.18.2",
"classnames": "^2.2.6",
"cli": "^1.0.1",
"cloudinary": "^1.13.2",
"compression": "1.7.0",
"concurrently": "^4.1.0",
"contentful": "^7.5.0",
"cookie-parser": "^1.4.4",
"country-list": "^2.1.0",
"dotenv": "^6.2.0",
"express": "^4.16.4",
"express-formidable": "^1.2.0",
"express-validator": "^6.1.1",
"gravatar": "^1.6.0",
"jsonwebtoken": "^8.2.0",
"lodash": "^4.17.5",
"mongoose": "^5.0.12",
"nodemailer": "^5.1.1",
"nodemailer-sendgrid-transport": "^0.2.0",
"passport": "^0.4.0",
"passport-jwt": "^4.0.0",
"react": "^16.9.0",
"react-dom": "^16.9.0",
"prerender-node": "^3.2.5",
"react-ga": "^2.5.7",
"react-helmet": "^5.2.1",
"react-redux": "^7.1.0",
"react-router-dom": "^5.0.1",
"redux-thunk": "^2.3.0",
"request": "^2.88.0",
"validator": "^9.4.1"
},
"devDependencies": {
"nodemon": "^1.17.3",
"webpack-cli": "^3.3.6"
}
}