-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.18 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.18 KB
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
{
"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 \"nodemon server.js\" \"npm run client\"",
"build": "cd client && npm run build",
"deploy": "yarn build && git add . && git commit -m \"Building for production\" && git push heroku chris",
"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.17.1",
"bcrypt-nodejs": "0.0.3",
"body-parser": "^1.18.2",
"connect": "^3.6.5",
"connect-flash": "^0.1.1",
"cookie-parser": "^1.4.3",
"cors": "^2.8.4",
"ejs": "^2.5.7",
"express": "^4.16.2",
"express-session": "^1.15.6",
"method-override": "^2.3.10",
"moment": "^2.20.1",
"mongoose": "^5.0.4",
"morgan": "^1.9.0",
"passport": "^0.4.0",
"passport-twitter": "^1.0.4",
"path": "^0.12.7",
"react-cookie": "^2.1.2",
"twitter": "^1.7.1"
}
}