-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.27 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
52
{
"name": "nblog",
"version": "1.0.0",
"description": "blog",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"lint:staged": "lint-staged"
},
"lint-staged": {
"linters": {
"*.js": [
"eslint --ignore-path .gitignore .editorconfig --fix"
]
},
"ignore": []
},
"pre-commit": "lint:staged",
"keywords": [
"express"
],
"author": "chenyy",
"license": "MIT",
"dependencies": {
"config-lite": "^1.6.0",
"connect-flash": "^0.1.1",
"connect-mongo": "^1.3.2",
"connect-redis": "^3.4.1",
"ejs": "^2.6.1",
"express": "^4.16.4",
"express-formidable": "git+https://github.com/utatti/express-formidable.git",
"express-session": "^1.15.6",
"express-winston": "^2.6.0",
"marked": "^0.3.19",
"moment": "^2.24.0",
"mongolass": "^2.4.5",
"objectid-to-timestamp": "^1.3.0",
"sha1": "^1.1.1",
"winston": "^2.4.4"
},
"devDependencies": {
"eslint": "^5.15.2",
"eslint-config-standard": "^12.0.0",
"eslint-plugin-import": "^2.16.0",
"eslint-plugin-node": "^8.0.1",
"eslint-plugin-promise": "^4.0.1",
"eslint-plugin-standard": "^4.0.0",
"lint-staged": "^8.1.5",
"pre-commit": "^1.2.2",
"supervisor": "^0.12.0"
}
}