forked from mercurius-js/mercurius
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
79 lines (79 loc) · 2.38 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
{
"name": "mercurius",
"version": "8.8.0",
"description": "Fastify GraphQL adapter with gateway and subscription support",
"main": "index.js",
"types": "index.d.ts",
"scripts": {
"docs": "docsify serve",
"unit": "tap test/*.js test/gateway/*.js test/internals/*.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/mercurius-js/mercurius.git"
},
"author": "Matteo Collina <hello@matteocollina.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/mercurius-js/mercurius/issues"
},
"homepage": "https://mercurius.dev",
"peerDependencies": {
"graphql": "^15.5.1"
},
"devDependencies": {
"@graphql-tools/merge": "^8.0.0",
"@graphql-tools/schema": "^8.0.0",
"@graphql-tools/utils": "^8.0.0",
"@sinonjs/fake-timers": "^8.0.1",
"@types/node": "^16.0.0",
"@types/ws": "^8.2.0",
"@typescript-eslint/eslint-plugin": "^4.28.2",
"@typescript-eslint/parser": "^4.28.2",
"autocannon": "^7.3.0",
"concurrently": "^6.2.0",
"docsify-cli": "^4.4.3",
"fastify": "^3.18.1",
"graphql-middleware": "^6.0.10",
"graphql-shield": "^7.5.0",
"graphql-tools": "^8.0.0",
"pre-commit": "^1.2.2",
"proxyquire": "^2.1.3",
"snazzy": "^9.0.0",
"split2": "^4.0.0",
"standard": "^16.0.3",
"tap": "^15.0.9",
"tsd": "^0.18.0",
"typescript": "^4.3.5",
"wait-on": "^6.0.0"
},
"dependencies": {
"@types/isomorphic-form-data": "^2.0.0",
"end-of-stream": "^1.4.4",
"events.on": "^1.0.1",
"fastify-error": "^0.3.1",
"fastify-plugin": "^3.0.0",
"fastify-static": "^4.2.2",
"fastify-websocket": "^4.0.0",
"graphql": "^15.5.1",
"graphql-jit": "^0.7.0",
"mqemitter": "^4.4.1",
"p-map": "^4.0.0",
"promise.allsettled": "^1.0.4",
"readable-stream": "^3.6.0",
"secure-json-parse": "^2.4.0",
"single-user-cache": "^0.6.0",
"tiny-lru": "^7.0.6",
"undici": "^4.8.0",
"ws": "^8.2.2"
},
"tsd": {
"directory": "test/types"
}
}