forked from mercurius-js/mercurius
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
63 lines (63 loc) · 1.87 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
55
56
57
58
59
60
61
62
63
{
"name": "fastify-gql",
"version": "5.7.0",
"description": "Fastify GraphQL adapter",
"main": "index.js",
"types": "index.d.ts",
"scripts": {
"unit": "tap --100 test/*.js test/gateway/*.js",
"cov": "tap --coverage-report=html -J test/*.js test/gateway/*.js",
"lint": "npm run lint:standard && npm run lint:typescript",
"lint:standard": "standard | snazzy",
"lint:typescript": "standard --parser @typescript-eslint/parser --plugin @typescript-eslint/eslint-plugin test/types/*.ts",
"typescript": "tsd",
"test": "npm run lint && npm run unit && npm run typescript"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mcollina/fastify-gql.git"
},
"author": "Matteo Collina <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/mcollina/fastify-gql/issues"
},
"homepage": "https://github.com/mcollina/fastify-gql#readme",
"devDependencies": {
"@sinonjs/fake-timers": "^6.0.1",
"@types/node": "^14.0.23",
"@types/ws": "^7.2.6",
"@typescript-eslint/eslint-plugin": "^3.6.1",
"@typescript-eslint/parser": "^3.6.1",
"autocannon": "^6.0.0",
"fastify": "^3.0.2",
"graphql-tools": "^6.0.14",
"pre-commit": "^1.2.2",
"proxyquire": "^2.1.3",
"snazzy": "^8.0.0",
"split2": "^3.1.1",
"standard": "^14.0.0",
"tap": "^14.10.6",
"tsd": "^0.13.1"
},
"dependencies": {
"end-of-stream": "^1.4.4",
"events.on": "^1.0.1",
"fastify-plugin": "^2.0.1",
"fastify-static": "^3.0.0",
"fastify-websocket": "^2.0.5",
"graphql": "^15.0.0",
"graphql-jit": "^0.4.0",
"http-errors": "^1.7.3",
"mqemitter": "^4.0.0",
"p-map": "^4.0.0",
"promise.allsettled": "^1.0.2",
"readable-stream": "^3.5.0",
"single-user-cache": "^0.3.0",
"tiny-lru": "^7.0.2",
"ws": "^7.2.1"
},
"tsd": {
"directory": "test/types"
}
}