-
- Downloads
First commit 

parents
Branches
Tags
Showing
- .gitignore 105 additions, 0 deletions.gitignore
- .npmignore 83 additions, 0 deletions.npmignore
- LICENSE 22 additions, 0 deletionsLICENSE
- README.md 104 additions, 0 deletionsREADME.md
- events.http 47 additions, 0 deletionsevents.http
- jsconfig.json 5 additions, 0 deletionsjsconfig.json
- package.json 37 additions, 0 deletionspackage.json
- plugin.js 104 additions, 0 deletionsplugin.js
- routes.js 66 additions, 0 deletionsroutes.js
- test/hasura.test.js 41 additions, 0 deletionstest/hasura.test.js
- yarn.lock 0 additions, 0 deletionsyarn.lock
.gitignore
0 → 100644
.npmignore
0 → 100644
LICENSE
0 → 100644
README.md
0 → 100644
events.http
0 → 100644
jsconfig.json
0 → 100644
package.json
0 → 100644
{ | ||
"name": "fastify-hasura", | ||
"version": "0.0.1", | ||
"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", | ||
"graphql", | ||
"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": { | ||
"fastify-plugin": "^3.0.0", | ||
"graphql-request": "^3.4.0" | ||
}, | ||
"devDependencies": { | ||
"tap": "^14.11.0" | ||
} | ||
} |
plugin.js
0 → 100644
routes.js
0 → 100644
test/hasura.test.js
0 → 100644
yarn.lock
0 → 100644
This diff is collapsed.
Please register or sign in to comment