forked from mercurius-js/mercurius
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
74 lines (74 loc) · 2.27 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
{
"name": "mercurius",
"version": "7.5.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 <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/mercurius-js/mercurius/issues"
},
"homepage": "https://mercurius.dev",
"devDependencies": {
"@graphql-tools/merge": "^6.2.4",
"@graphql-tools/schema": "^7.1.3",
"@graphql-tools/utils": "^7.7.1",
"@sinonjs/fake-timers": "^7.0.2",
"@types/node": "^14.14.20",
"@types/ws": "^7.4.0",
"@typescript-eslint/eslint-plugin": "^3.6.1",
"@typescript-eslint/parser": "^3.6.1",
"autocannon": "^7.0.5",
"docsify-cli": "^4.4.1",
"fastify": "^3.0.2",
"graphql-middleware": "^6.0.2",
"graphql-shield": "^7.5.0",
"graphql-tools": "^7.0.4",
"pre-commit": "^1.2.2",
"proxyquire": "^2.1.3",
"snazzy": "^9.0.0",
"split2": "^3.1.1",
"standard": "^16.0.0",
"tap": "^15.0.0",
"tsd": "^0.14.0",
"typescript": "^4.0.3"
},
"dependencies": {
"@types/isomorphic-form-data": "^2.0.0",
"end-of-stream": "^1.4.4",
"events.on": "^1.0.1",
"fastify-error": "^0.3.0",
"fastify-plugin": "^3.0.0",
"fastify-static": "^4.0.1",
"fastify-websocket": "^3.0.0",
"graphql": "^15.4.0",
"graphql-jit": "^0.5.0",
"mqemitter": "^4.0.0",
"p-map": "^4.0.0",
"promise.allsettled": "^1.0.2",
"readable-stream": "^3.5.0",
"secure-json-parse": "^2.2.0",
"single-user-cache": "^0.4.0",
"tiny-lru": "^7.0.2",
"undici": "^3.0.0",
"ws": "^7.4.2"
},
"tsd": {
"directory": "test/types"
}
}