This repository has been archived by the owner on Apr 5, 2020. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
74 lines (74 loc) · 1.79 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
70
71
72
73
74
{
"name": "bm-api",
"version": "1.0.0",
"private": true,
"description": "",
"main": "server.js",
"bin": {
"bm-cli": "./bin/bm-cli"
},
"scripts": {
"lint": "standard",
"test": "npm run lint && nyc --reporter=html --reporter=text mocha --timeout=10000 test/**/*.test.js",
"coverage": "nyc report --reporter=text-lcov | coveralls",
"setup": "node bin/bm-cli setup",
"heroku-postbuild": "node bin/bm-cli update"
},
"author": "James Mortemore ([email protected])",
"license": "MIT",
"engines": {
"node": ">=8.0.0 <13"
},
"dependencies": {
"@koa/cors": "3.0.0",
"apollo-server-koa": "1.4.0",
"argon2-ffi": "1.1.2",
"bluebird": "3.7.2",
"dataloader": "1.4.0",
"db-migrate": "0.11.6",
"db-migrate-mysql": "1.1.10",
"dotenv": "8.2.0",
"graphql": "0.13.2",
"graphql-constraint-directive": "1.4.1",
"graphql-depth-limit": "1.1.0",
"graphql-list-fields": "2.0.2",
"graphql-tools": "4.0.7",
"hibp": "7.5.2",
"inquirer": "7.0.4",
"ip": "1.1.5",
"koa": "2.11.0",
"koa-bodyparser": "4.2.1",
"koa-pino-logger": "2.1.3",
"koa-router": "7.4.0",
"koa-session": "5.13.1",
"lodash": "4.17.15",
"memoizee": "0.4.14",
"mysql2": "2.1.0",
"pino": "5.16.0",
"require-environment-variables": "1.2.0",
"uuid-parse": "1.1.0",
"validator": "10.11.0",
"web-push": "3.4.3",
"yargs": "14.2.2"
},
"devDependencies": {
"coveralls": "3.0.9",
"faker": "4.1.0",
"json-to-graphql-query": "1.9.0",
"mocha": "6.2.2",
"mockdate": "2.0.5",
"nock": "11.9.1",
"nyc": "14.1.1",
"standard": "14.3.1",
"supertest": "4.0.2",
"uuid": "3.4.0"
},
"standard": {
"globals": [
"describe",
"it",
"before",
"after"
]
}
}