-
Notifications
You must be signed in to change notification settings - Fork 237
/
package.json
80 lines (80 loc) · 2.16 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": "15.1.0",
"description": "Fastify GraphQL adapter with subscription support",
"main": "index.js",
"types": "index.d.ts",
"scripts": {
"docs": "docsify serve",
"unit": "tap test/*.js test/internals/*.js",
"cov": "tap --coverage-report=html -J test/*.js test/internals/*.js",
"lint": "eslint",
"lint:fix": "eslint --fix",
"typescript": "tsd",
"test": "npm run lint && npm run unit && npm run typescript",
"test2": "npm run unit"
},
"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": "^9.0.0",
"@graphql-tools/schema": "^10.0.0",
"@graphql-tools/utils": "^10.0.0",
"@sinonjs/fake-timers": "^11.0.0",
"@types/isomorphic-form-data": "^2.0.0",
"@types/node": "^22.0.0",
"@types/ws": "^8.2.0",
"autocannon": "^7.3.0",
"concurrently": "^8.0.1",
"docsify-cli": "^4.4.3",
"eslint": "^9.9.1",
"fastify": "^5.0.0-alpha.4",
"graphql": "^16.0.0",
"graphql-tag": "^2.12.6",
"graphql-ws": "^5.11.2",
"neostandard": "^0.11.4",
"pre-commit": "^1.2.2",
"proxyquire": "^2.1.3",
"semver": "^7.5.0",
"sinon": "^17.0.0",
"split2": "^4.0.0",
"tap": "^16.3.0",
"tsd": "^0.30.0",
"typescript": "^5.0.2",
"wait-on": "^7.0.1"
},
"dependencies": {
"@fastify/error": "^4.0.0",
"@fastify/static": "^8.0.0",
"@fastify/websocket": "^11.0.0",
"fastify-plugin": "^5.0.0",
"graphql-jit": "0.8.6",
"mqemitter": "^6.0.0",
"p-map": "^4.0.0",
"quick-lru": "^7.0.0",
"readable-stream": "^4.0.0",
"safe-stable-stringify": "^2.3.0",
"secure-json-parse": "^2.7.0",
"single-user-cache": "^1.0.0",
"tiny-lru": "^11.0.0",
"undici": "^6.19.8",
"ws": "^8.2.2"
},
"tsd": {
"directory": "test/types"
},
"engines": {
"node": "^20.9.0 || >=22.0.0"
}
}