-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
39 lines (39 loc) · 942 Bytes
/
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
{
"name": "fastify-hasura",
"version": "0.1.2",
"description": "A fastify plugin to have fun with Hasura.",
"main": "plugin.js",
"type": "module",
"scripts": {
"test": "tap test/*.test.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ManUtopiK/fastify-hasura.git"
},
"keywords": [
"hasura",
"fastify",
"fastify-plugin",
"graphql"
],
"author": "Emmanuel Salomon <emmanuel.salomon@gmail.com> (https://github.com/ManUtopiK)",
"license": "MIT",
"bugs": {
"url": "https://github.com/ManUtopiK/fastify-hasura/issues"
},
"homepage": "https://github.com/ManUtopiK/fastify-hasura#readme",
"engines": {
"node": ">=10"
},
"dependencies": {
"@snotra/hasura-parser": "^1.0.2",
"fastify-plugin": "^3.0.0",
"fastify-sensible": "^3.1.1",
"graphql": "^15.5.0",
"graphql-request": "^3.4.0"
},
"devDependencies": {
"tap": "^14.11.0"
}
}