-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.5 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.5 KB
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
{
"name": "questioner",
"version": "0.0.1",
"scripts": {
"coverage": "NODE_ENV=test NODE_CONFIG_DIR=server/config node ./node_modules/.bin/istanbul cover ./node_modules/.bin/_mocha -- --ui tdd -R spec -t 10000 --recursive server/tests && node node_modules/istanbul/lib/cli.js report clover",
"precommit": "eslint ./server server.js",
"complexity": "node ./node_modules/.bin/plato -e .eslintrc -r -d complexity server",
"prepush": "yarn run coverage"
},
"engines": {
"node": "latest"
},
"dependencies": {
"awilix": "^2.4.0",
"bcrypt": "^1.0.2",
"complexity-report": "^2.0.0-alpha",
"config": "^1.26.1",
"cookie": "^0.3.1",
"fs-extra": "^3.0.1",
"ioredis": "^3.1.1",
"koa": "^2.2.0",
"koa-body": "^2.3.0",
"koa-bodyparser": "^4.2.0",
"koa-multer": "^1.0.1",
"koa-passport": "^3.0.0",
"koa-ratelimit": "^4.0.0",
"koa-router": "^7.2.1",
"koa-session": "^5.3.0",
"koa-validate": "^1.0.7",
"koa2-session-redis": "^0.0.1",
"lodash": "^4.17.4",
"mime": "^1.3.6",
"mongoose": "^4.10.7",
"multer": "^1.3.0",
"object-mapper": "^3.0.1",
"passport": "^0.3.2",
"passport-local": "^1.0.0",
"pm2": "^2.5.0",
"query-string": "^4.3.4",
"request": "^2.81.0",
"winston": "^2.3.1"
},
"devDependencies": {
"chai": "^4.0.2",
"eslint": "^4.0.0",
"husky": "^0.13.4",
"istanbul": "next",
"mocha": "^3.4.2",
"plato": "^1.7.0",
"sinon": "^2.3.5",
"supertest-koa-agent": "^0.3.0"
}
}