-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
47 lines (47 loc) · 1.21 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
{
"name": "reactexpress",
"version": "1.0.0",
"description": "",
"main": "server.js",
"engines": {
"node": "10.15.3",
"npm": "6.4.1"
},
"scripts": {
"client-install": "cd client && npm install",
"start": "node server.js",
"server": "env-cmd -f ./.env nodemon server.js",
"client": "npm start --prefix client",
"dev": "concurrently \"npm run server\" \"npm run client\"",
"heroku-postbuild": "cd client && npm i && npm run build",
"build": "npm run build --prefix client"
},
"author": "",
"license": "MIT",
"devDependencies": {
"env-cmd": "^10.0.1"
},
"dependencies": {
"bcrypt": "^3.0.7",
"bcryptjs": "^2.4.3",
"clean-cache": "^1.0.2",
"cloudinary-react": "^1.3.0",
"concurrently": "^4.1.1",
"express": "^4.17.1",
"express-jwt": "^5.3.1",
"express-validator": "^6.3.1",
"fscreen": "^1.0.2",
"google-auth-library": "^5.9.2",
"js-cookie": "^2.2.1",
"jsonwebtoken": "^8.5.1",
"lodash": "^4.17.15",
"mongodb": "^3.4.1",
"mongoose": "^5.8.4",
"morgan": "^1.9.1",
"node-fetch": "^2.6.0",
"nodemailer": "^6.4.2",
"nodemon": "^1.19.1",
"react-facebook-login": "^4.1.1",
"validator": "^12.1.0"
}
}