-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.17 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
{
"name": "backend-helpers",
"version": "0.5.0",
"main": "index.js",
"license": "MIT",
"scripts": {
"test": "STORE_LOG_LEVEL=fatal nyc mocha ./test/*.test.js ./test/**/*.test.js && yarn lint",
"lint": "standard",
"docs": "docsify serve ./docs",
"prepublish": "yarn test"
},
"repository": {
"type": "git",
"url": "https://github.com/alekbarszczewski/backend-helpers"
},
"engines": {
"node": ">= 8.x"
},
"dependencies": {
"backend-store": "^0.7.0",
"cors": "^2.8.4",
"express": "^4.16.3",
"express-graphql": "^0.6.12",
"express-jwt": "^5.3.1",
"graphql-add-middleware": "^0.1.5",
"graphql-iso-date": "^3.5.0",
"graphql-schema-modules": "^0.0.3",
"graphql-tools": "^3.0.2",
"graphql-type-json": "^0.2.1",
"lodash.defaults": "^4.2.0",
"ow": "^0.6.0"
},
"devDependencies": {
"capture-stdout": "^1.0.0",
"chai": "^4.1.2",
"chai-as-promised": "^7.1.1",
"docsify": "^4.6.10",
"graphql": "^0.13.2",
"jsonwebtoken": "^8.3.0",
"mocha": "^5.2.0",
"nyc": "^12.0.2",
"selectn": "^1.1.2",
"sinon": "^6.0.0",
"standard": "^11.0.1",
"supertest": "^3.1.0"
}
}