-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
43 lines (43 loc) · 1.21 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
{
"name": "mercurius-fetch",
"version": "1.1.0",
"description": "Mercurius fetch Plugin adds fetch to a rest api directly on query or properties of query",
"main": "index.js",
"scripts": {
"unit": "tap --100 test/*.js",
"test:watch": "tap test/*.js --watch",
"cov": "tap --coverage-report=html -J test/*.js",
"lint": "standard | snazzy",
"lint:fix": "standard --fix | snazzy",
"test": "npm run lint && npm run unit",
"typescript": "tsc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/rbonillajr/mercurius-fetch.git"
},
"author": "Rene Bonilla <[email protected]>",
"contributors": [],
"license": "MIT",
"bugs": {
"url": "https://github.com/rbonillajr/mercurius-fetch/issues"
},
"homepage": "https://github.com/rbonillajr/mercurius-fetch",
"devDependencies": {
"@types/lodash.get": "^4.4.7",
"fastify": "^4.10.2",
"mercurius": "^11.3.0",
"prettier": "^2.8.0",
"snazzy": "^9.0.0",
"standard": "^17.0.0",
"tap": "^16.3.2",
"typescript": "^4.9.3"
},
"dependencies": {
"@fastify/error": "^3.0.0",
"fastify-plugin": "^4.3.0",
"graphql": "^16.6.0",
"lodash.get": "^4.4.2",
"undici": "^5.13.0"
}
}