-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
37 lines (37 loc) · 1.05 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
{
"name": "mern",
"version": "1.0.0",
"description": "Mern Demo",
"main": "server.js",
"scripts": {
"server": "node server.js",
"client": "cd client && npm run start",
"start": "./node_modules/.bin/concurrently \"./node_modules/.bin/nodemon\" \"npm run client\"",
"build": "cd client && npm run build",
"deploy": "yarn build && git add . && git commit -m \"Building for production\" && git push heroku master",
"test": "npm run test --prefix client/"
},
"author": "",
"license": "ISC",
"devDependencies": {
"concurrently": "^3.5.0",
"nodemon": "^1.11.0"
},
"dependencies": {
"bcrypt": "^2.0.1",
"bcryptjs": "^2.4.3",
"body-parser": "^1.18.2",
"express": "^4.15.4",
"jsonwebtoken": "^8.2.1",
"mongoose": "^5.0.17",
"node-schedule": "^1.3.0",
"passport": "^0.4.0",
"passport-facebook": "^2.1.1",
"passport-facebook-token": "^3.3.0",
"passport-local": "^1.0.0",
"prop-types": "^15.6.1",
"request": "^2.85.0",
"socket.io": "^2.1.1",
"validator": "^10.1.0"
}
}