forked from akinmaurice/node-express-forum
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.22 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.22 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
43
44
45
46
47
48
49
{
"name": "forum-app",
"version": "0.0.0",
"private": true,
"engines": {
"node": "8.9.4"
},
"scripts": {
"dev": "nodemon ./start.js --ignore public/",
"start": "node ./start.js"
},
"dependencies": {
"bcrypt": "^1.0.3",
"body-parser": "^1.17.2",
"connect-flash": "^0.1.1",
"connect-mongo": "^1.3.2",
"cookie-parser": "^1.4.3",
"csurf": "^1.9.0",
"debug": "^3.1.0",
"dotenv": "^4.0.0",
"es6-promisify": "^5.0.0",
"express": "^4.15.5",
"express-session": "^1.15.1",
"express-validator": "^3.1.2",
"helmet": "^3.10.0",
"jsonwebtoken": "^8.1.0",
"md5": "^2.2.1",
"moment": "^2.20.1",
"mongoose": "^4.8.7",
"mongoose-mongodb-errors": "^0.0.2",
"morgan": "^1.8.1",
"passport": "^0.4.0",
"passport-local": "^1.0.0",
"passport-local-mongoose": "^4.0.0",
"pug": "^2.0.0-beta11",
"serve-favicon": "^2.4.2",
"slugs": "^0.1.3",
"validator": "^7.0.0"
},
"devDependencies": {
"eslint": "^4.12.0",
"eslint-config-airbnb": "^16.1.0",
"eslint-config-airbnb-base": "^12.1.0",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-jsx-a11y": "^6.0.2",
"eslint-plugin-react": "^7.5.1",
"nodemon": "^1.12.1"
}
}