forked from mercurius-js/mercurius
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
80 lines (80 loc) · 2.35 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
80
{
"name": "mercurius",
"version": "9.6.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:fix": "standard --fix",
"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 <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/mercurius-js/mercurius/issues"
},
"homepage": "https://mercurius.dev",
"peerDependencies": {
"graphql": "^16.0.0"
},
"devDependencies": {
"@graphql-tools/merge": "^8.0.0",
"@graphql-tools/schema": "^8.0.0",
"@graphql-tools/utils": "^8.0.0",
"@sinonjs/fake-timers": "^9.0.0",
"@types/node": "^17.0.0",
"@types/ws": "^8.2.0",
"@typescript-eslint/eslint-plugin": "^5.21.0",
"@typescript-eslint/parser": "^5.21.0",
"autocannon": "^7.3.0",
"concurrently": "^7.0.0",
"docsify-cli": "^4.4.3",
"fastify": "^3.28.0",
"pre-commit": "^1.2.2",
"proxyquire": "^2.1.3",
"sinon": "^14.0.0",
"snazzy": "^9.0.0",
"split2": "^4.0.0",
"standard": "^17.0.0",
"tap": "^16.0.0",
"tsd": "^0.20.0",
"typescript": "^4.3.5",
"wait-on": "^6.0.0"
},
"dependencies": {
"@fastify/error": "^3.0.0",
"@fastify/static": "^5.0.0",
"@fastify/websocket": "^5.0.0",
"@types/isomorphic-form-data": "^2.0.0",
"events.on": "^1.0.1",
"fastify-plugin": "^3.0.1",
"graphql": "^16.0.0",
"graphql-jit": "^0.7.3",
"mqemitter": "^5.0.0",
"p-map": "^4.0.0",
"readable-stream": "^3.6.0",
"safe-stable-stringify": "^2.3.0",
"secure-json-parse": "^2.4.0",
"single-user-cache": "^0.6.0",
"tiny-lru": "^8.0.1",
"undici": "^5.0.0",
"ws": "^8.2.2"
},
"tsd": {
"directory": "test/types"
},
"engines": {
"node": ">=12.9.0"
}
}