-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.24 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.24 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
{
"name": "authapi",
"version": "0.0.0",
"private": true,
"engines": {
"node": "8.9.1"
},
"scripts": {
"watch": "nodemon ./bin/www --ignore public/",
"dev": "npm run watch",
"start": "node ./bin/www"
},
"dependencies": {
"bcrypt": "^1.0.3",
"body-parser": "~1.17.1",
"connect-mongo": "1.3.2",
"cookie-parser": "~1.4.3",
"debug": "~2.6.3",
"dotenv": "4.0.0",
"es6-promisify": "5.0.0",
"express": "~4.15.2",
"express-session": "1.15.1",
"express-validator": "3.1.2",
"jsonwebtoken": "^8.1.0",
"md5": "^2.2.1",
"moment": "2.17.1",
"mongoose": "4.8.7",
"mongoose-mongodb-errors": "0.0.2",
"morgan": "~1.8.1",
"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",
"prettier": "^1.9.2",
"prettier-eslint": "^8.2.6"
}
}