-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
36 lines (36 loc) · 1.04 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
{
"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": "echo \"Error: no test specified\" && exit 1",
"installDeps": "yarn && cd client && yarn"
},
"author": "",
"license": "ISC",
"devDependencies": {
"concurrently": "^3.5.0",
"nodemon": "^1.11.0"
},
"dependencies": {
"axios": "^0.18.0",
"bcryptjs": "^2.4.3",
"body-parser": "^1.18.2",
"connect-select": "0.0.2",
"express": "^4.16.3",
"express-session": "^1.15.6",
"mongoose": "^5.0.11",
"morgan": "^1.9.0",
"passport": "^0.4.0",
"passport-local": "^1.0.0",
"react-google-maps": "^9.4.5",
"react-router-dom": "^4.2.2",
"twilio": "^3.14.0"
}
}