-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
54 lines (54 loc) · 1.31 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
{
"name": "@autotelic/mercurius-postgraphile",
"version": "0.1.0",
"description": "Plugin for fastify",
"main": "index.js",
"files": [],
"directories": {
"test": "test"
},
"scripts": {
"test": "tap --100 -j1 -R classic",
"example": "fastify start -w -l info -P ./example/index.js",
"lint": "standard",
"fix": "npm run lint -- --fix",
"validate": "npm run lint && npm run test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/autotelic/mercurius-postgraphile.git"
},
"keywords": [
"graphql",
"mercurius",
"fastify",
"postgraphile",
"plugin"
],
"author": "Autotelic Development Ltd <info@autotelic.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/autotelic/mercurius-postgraphile/issues"
},
"homepage": "https://github.com/autotelic/mercurius-postgraphile#readme",
"dependencies": {
"@graphql-tools/stitch": "^8.4.3",
"fastify-plugin": "^3.0.0",
"postgraphile": "^4.12.3"
},
"devDependencies": {
"@graphile-contrib/pg-simplify-inflector": "^6.1.0",
"fastify": "^3.0.0",
"fastify-cli": "^2.5.1",
"lint-staged": "^12.3.2",
"mercurius": "^7.9.1",
"pg": "^8.6.0",
"standard": "^16.0.3",
"tap": "^15.0.6"
},
"lint-staged": {
"*.{js,jsx}": [
"npm run fix"
]
}
}