-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
85 lines (85 loc) · 2.32 KB
/
package.json
File metadata and controls
85 lines (85 loc) · 2.32 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
{
"name": "quarters-api",
"version": "0.0.1",
"description": "GraphQL API Server for PS",
"scripts": {
"start": "NODE_PATH=$NODE_PATH:. node bin/server.js | bunyan",
"console": "NODE_PATH=$NODE_PATH:. node",
"db": "babel-node ./node_modules/.bin/knex",
"migrate": "npm run db -- migrate:latest",
"rollback": "npm run db -- migrate:rollback",
"migrate-test": "NODE_ENV=test npm run db -- migrate:latest",
"rollback-test": "NODE_ENV=test npm run db -- migrate:rollback",
"migrate-all": "npm run migrate && npm run migrate-test",
"rollback-all": "npm run rollback && npm run rollback-test",
"test": "NODE_ENV=test NODE_PATH=$NODE_PATH:. nyc mocha --opts mocha.opts",
"coverage": "NODE_ENV=test NODE_PATH=$NODE_PATH:. nyc --reporter=text mocha --opts mocha.opts",
"posttest": "standard"
},
"author": "Thomas Dashney",
"license": "ISC",
"devDependencies": {
"babel-core": "^6.26.0",
"babel-loader": "^7.1.2",
"babel-preset-env": "^1.6.0",
"chai": "^4.1.2",
"chai-as-promised": "^7.1.1",
"chai-jest-snapshot": "^2.0.0",
"faker": "^4.1.0",
"install": "^0.10.4",
"mocha": "^5.0.0",
"mockdate": "^2.0.2",
"npm": "^5.6.0",
"nyc": "^11.4.1",
"sinon": "^4.2.2",
"sinon-chai": "^2.14.0",
"standard": "^10.0.3",
"supertest": "^3.0.0",
"webpack": "^3.5.5",
"webpack-node-externals": "^1.6.0"
},
"dependencies": {
"apollo-errors": "^1.5.1",
"apollo-server-koa": "^1.3.1",
"babel-cli": "^6.26.0",
"bcryptjs": "^2.4.3",
"bunyan": "^1.8.12",
"config": "^1.26.2",
"dataloader": "^1.3.0",
"graphql": "^0.10.5",
"graphql-tools": "^1.2.1",
"jsonwebtoken": "^7.4.3",
"kcors": "^2.2.1",
"knex": "^0.13.0",
"koa": "^2.3.0",
"koa-bodyparser": "^4.2.0",
"koa-mount": "^3.0.0",
"koa-qs": "^2.0.0",
"koa-router": "^7.2.1",
"lodash": "^4.17.4",
"luxon": "^1.3.0",
"objection": "^1.0.0-rc.13",
"pg": "^7.2.0",
"revalidate": "^1.2.0",
"serverless-http": "^1.5.0",
"shortid": "^2.2.8",
"sql-formatter": "^2.0.0"
},
"standard": {
"globals": [
"expect"
]
},
"nyc": {
"check-coverage": true,
"lines": 97,
"reporter": [
"lcov",
"text-summary"
],
"exclude": [
"lib/admin-server",
"test-helpers"
]
}
}