-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 1.18 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
{
"name": "mern-app",
"version": "1.0.0",
"description": "A robust MERN stack app",
"main": "app.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "node app.js",
"server": "nodemon app.js",
"client-install": "npm install --prefix client",
"client": "npm start --prefix client",
"dev": "concurrently \"npm run server\" \"npm run client\"",
"debug": "concurrently \"node app.js\" \"npm run client\"",
"heroku-postbuild": "NPM_CONFIG_PRODUCTION=false npm install --prefix client && npm run build --prefix client"
},
"author": "jrdeveloper71",
"license": "ISC",
"dependencies": {
"bcryptjs": "^2.4.3",
"body-parser": "^1.18.3",
"cloudinary": "^1.14.0",
"compression": "^1.7.4",
"express": "^4.16.4",
"google-auth-library": "^3.1.2",
"jsonwebtoken": "^8.4.0",
"method-override": "^3.0.0",
"mongoose": "^5.4.11",
"multer": "^1.4.1",
"passport": "^0.4.0",
"passport-jwt": "^4.0.0",
"validator": "^10.11.0"
},
"devDependencies": {
"colors": "^1.3.3",
"concurrently": "^4.1.0",
"nodemon": "^1.18.10"
}
}