-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.24 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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
{
"name": "be-assessment-2",
"version": "1.0.0",
"main": "server.js",
"repository": "https://github.com/Murderlon/be-assessment-2.git",
"author": "Murderlon <hello@murderlon.me>",
"license": "MIT",
"private": true,
"scripts": {
"start": "node .",
"dev": "nodemon .",
"format": "standard --fix"
},
"lint-staged": {
"**/*.js": [
"standard --fix",
"git add"
]
},
"devDependencies": {
"dotenv": "^5.0.1",
"eslint": "^4.19.1",
"eslint-config-standard": "^11.0.0",
"eslint-plugin-import": "^2.10.0",
"eslint-plugin-node": "^6.0.1",
"eslint-plugin-promise": "^3.7.0",
"eslint-plugin-standard": "^3.0.1",
"husky": "^0.14.3",
"lint-staged": "^7.0.2",
"morgan": "^1.9.0",
"standard": "^11.0.1"
},
"dependencies": {
"body-parser": "^1.18.2",
"compression": "^1.7.2",
"connect-mongo": "^2.0.1",
"cookie-parser": "^1.4.3",
"dlv": "^1.1.1",
"ejs": "^2.5.8",
"express": "^4.16.3",
"express-session": "^1.15.6",
"helmet": "^3.12.0",
"mongoose": "^5.0.13",
"multer": "^1.3.0",
"node-status-codes": "^2.0.1",
"passport": "^0.4.0",
"passport-local": "^1.0.0",
"passport-local-mongoose": "^5.0.0",
"shortid": "^2.2.8"
}
}