-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
69 lines (69 loc) · 2.07 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
68
69
{
"name": "shop-api",
"version": "1.0.0",
"description": "",
"main": "server/app.js",
"scripts": {
"dev": "cross-env NODE_ENV=development nodemon ./bin/www",
"debug": "cross-env NODE_ENV=development nodemon --inspect ./bin/www",
"serve:test": "cross-env NODE_ENV=test nodemon ./bin/www.js",
"pm2-start": "pm2 start ./ecosystem.config.js --env production",
"ava": "cross-env NODE_ENV=test ava test",
"test": "cross-env NODE_ENV=test nyc --reporter=html --reporter=text ava --serial",
"coverage": "nyc report --reporter=text-lcov | coveralls",
"example": "cross-env nodemon ./example/app.js",
"busboy": "cross-env nodemon ./example/busboy.js"
},
"author": "wjj",
"license": "ISC",
"dependencies": {
"bunyan": "^1.8.12",
"debug": "^3.0.0",
"ioredis": "^3.1.4",
"kcors": "^2.2.1",
"koa": "^2.2.0",
"koa-bodyparser": "^4.2.0",
"koa-compose": "^4.0.0",
"koa-compress": "^2.0.0",
"koa-generic-session": "^2.0.0",
"koa-json": "^2.0.2",
"koa-jwt": "^3.2.1",
"koa-logger": "^3.0.1",
"koa-multer": "^1.0.2",
"koa-passport": "^3.0.0-rc.2",
"koa-redis": "^3.0.0",
"koa-response-time": "^2.0.0",
"koa-router": "^7.1.1",
"koa-session": "^5.8.1",
"koa-session-minimal": "^3.0.4",
"koa-static": "^5.0.0",
"lodash": "^4.17.4",
"markdown-it": "^8.3.2",
"mongoose": "^4.11.7",
"passport-github": "^1.1.0",
"passport-local": "^1.0.0",
"passport-qq": "0.0.3",
"passport-weibo": "^0.1.2",
"qiniu": "^7.0.6",
"svg-captcha": "^1.3.11",
"trek-captcha": "^0.3.0",
"xss": "^0.3.3"
},
"devDependencies": {
"ava": "^0.22.0",
"ava-spec": "^1.0.1",
"babel-plugin-espower": "^2.3.2",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-es2015-node6": "^0.4.0",
"babel-preset-stage-0": "^6.24.1",
"babel-register": "^6.26.0",
"coveralls": "^2.11.15",
"cross-env": "^5.0.5",
"nodemon": "^1.11.0",
"npm-run-all": "^4.0.0",
"nyc": "^11.1.0",
"sinon": "^3.2.1",
"superkoa": "^1.0.3",
"supertest": "^3.0.0"
}
}