-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 969 Bytes
/
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
{
"name": "mern-project",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"client-install": "cd clients && npm install",
"start": "babel-watch index.js",
"start-client": "npm start --prefix ./clients",
"start-server": "babel-watch index.js",
"dev": "npm-run-all -p start-server start-client",
"heroku-postbuild": "NPM_CONFIG_PRODUCTION=false npm install --prefix clients && npm run build --prefix clients"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"bcrypt": "^3.0.0",
"body-parser": "^1.18.3",
"cors": "^2.8.4",
"express": "^4.16.3",
"express-flash": "0.0.2",
"express-session": "^1.15.6",
"jsonwebtoken": "^8.3.0",
"mongoose": "^5.2.9",
"multer": "^1.3.1",
"validator": "^10.6.0"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-preset-env": "^1.7.0",
"babel-watch": "^2.0.7",
"npm-run-all": "^4.1.3"
}
}