-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
67 lines (67 loc) · 1.61 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
{
"name": "mmf-blog-api-koa2-v2",
"version": "2.0.0",
"license": "MIT",
"scripts": {
"postinstall": "husky install && husky set .husky/pre-commit 'npx lint-staged'",
"serve": "./node_modules/.bin/nodemon bin/www",
"start": "node bin/www",
"pm2": "pm2 start bin/run",
"lint": "eslint --ext .js server/ --fix"
},
"dependencies": {
"axios": "^0.21.1",
"baidu-aip-sdk": "^2.4.6",
"base64-img": "^1.0.4",
"debug": "^4.3.1",
"ejs": "^3.1.6",
"highlight.js": "^10.7.2",
"jade": "~1.11.0",
"jsonwebtoken": "^8.5.1",
"koa": "^2.13.1",
"koa-bodyparser": "^4.3.0",
"koa-convert": "^2.0.0",
"koa-json": "^2.0.2",
"koa-logger": "^3.2.1",
"koa-multer": "^1.0.2",
"koa-onerror": "^4.1.0",
"koa-router": "^10.0.0",
"koa-static": "^5.0.0",
"koa-views": "^7.0.1",
"markdown-it": "^12.0.6",
"markdown-it-toc-and-anchor": "^4.2.0",
"marked": "^2.0.3",
"md5": "^2.3.0",
"moment": "^2.29.1",
"mongoose": "^5.12.5",
"mongoose-autopopulate": "^0.13.0",
"request": "^2.88.2",
"request-promise": "^4.2.6"
},
"devDependencies": {
"eslint-config-lcy-js": "^3.1.1",
"eslint-config-prettier": "^8.2.0",
"eslint-plugin-prettier": "^3.4.0",
"husky": "6.0.0",
"lint-staged": "^10.5.4",
"nodemon": "^2.0.7",
"prettier": "^2.2.1",
"raven": "^2.6.4",
"should": "^13.2.3"
},
"engines": {
"node": ">= 8.6.0",
"npm": ">= 5.0.0"
},
"browserslist": [
"> 0.1%",
"last 3 versions",
"not ie <= 8",
"iOS > 8"
],
"lint-staged": {
"*.js": [
"eslint --fix"
]
}
}