forked from morehao/express-blog
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 1.42 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
{
"name": "express-blog",
"version": "1.0.0",
"description": "express-blog",
"main": "index.js",
"scripts": {
"dev": "cross-env NODE_ENV=development nodemon --inspect server.js",
"start": "cross-env NODE_ENV=production node server.js",
"build": "node ./build/server.js",
"test": "mocha test/**/*.js",
"standard": "standard",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s -r 0",
"apidoc": "apidoc -i app/apidoc/ -o app/public/apidoc/"
},
"author": "morehao",
"license": "MIT",
"pre-commit": [
"standard"
],
"apidoc": {
"name": "express-blog接口文档",
"title": "express-blog接口文档",
"version": "0.1.0"
},
"devDependencies": {
"bluebird": "^3.5.1",
"config": "^2.0.1",
"cors": "^2.8.4",
"cross-env": "^5.2.0",
"eslint": "^4.19.1",
"formidable": "^1.2.1",
"mocha": "^5.2.0",
"multer": "^1.3.1",
"nodemon": "^1.17.3",
"pre-commit": "^1.2.2",
"qiniu": "^7.2.1",
"standard": "^11.0.1",
"supertest": "^3.1.0",
"uuid": "^3.3.2",
"validator": "^10.7.1"
},
"standard": {
"globals": [
"describe",
"it",
"logger"
]
},
"dependencies": {
"amqplib": "^0.5.2",
"body-parser": "^1.18.2",
"debug": "^3.1.0",
"express": "^4.16.3",
"jsonwebtoken": "^8.2.2",
"lodash": "^4.17.10",
"log4js": "^2.8.0",
"moment": "^2.22.1",
"mongoose": "^5.0.17"
}
}