-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
77 lines (77 loc) · 2.34 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
{
"name": "@mercuriusjs/gateway",
"version": "4.0.1",
"description": "A plugin for mercurius federation",
"main": "index.js",
"types": "index.d.ts",
"files": [
"index.js",
"index.d.ts",
"lib"
],
"scripts": {
"lint": "npm run lint:standard && npm run lint:typescript",
"lint:fix": "standard --fix && npm run lint:typescript:fix",
"lint:standard": "standard | snazzy",
"lint:typescript": "standard --parser @typescript-eslint/parser --plugin @typescript-eslint/eslint-plugin test/types/*.ts",
"lint:typescript:fix": "standard --parser @typescript-eslint/parser --plugin @typescript-eslint/eslint-plugin test/types/*.ts --fix",
"example": "node example/index.js",
"test": "npm run lint && npm run test:types && npm run test:unit ",
"test:unit": "tap test/*.js",
"test:cov": "tap --coverage-report=html test/*.js",
"test:types": "tsd",
"prepare": "husky install"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mercurius-js/federation-support"
},
"keywords": [
"mercurius"
],
"author": "Davide Fiorello <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/mercurius-js/federation-support/issues"
},
"homepage": "https://github.com/mercurius-js/federation-support#readme",
"devDependencies": {
"@commitlint/cli": "^17.3.0",
"@commitlint/config-conventional": "^17.3.0",
"@fastify/autoload": "^6.0.0",
"@fastify/cors": "^9.0.0",
"@sinonjs/fake-timers": "^11.0.0",
"@typescript-eslint/eslint-plugin": "^5.44.0",
"@typescript-eslint/parser": "^5.44.0",
"autocannon": "^7.10.0",
"concurrently": "^8.0.1",
"fastify": "^5.0.0-alpha.4",
"husky": "^8.0.2",
"lint-staged": "^13.0.4",
"sinon": "^15.0.0",
"snazzy": "^9.0.0",
"standard": "^17.0.0",
"tap": "^16.3.2",
"tsd": "^0.28.1",
"wait-on": "^7.0.1"
},
"tsd": {
"directory": "test/types"
},
"lint-staged": {
"*.{js,jsx}": "standard --cache --fix"
},
"dependencies": {
"@mercuriusjs/federation": "^4.0.0",
"@mercuriusjs/subscription-client": "^2.0.0",
"fastify-plugin": "^5.0.0",
"graphql": "^16.6.0",
"graphql-ws": "^5.11.2",
"mercurius": "^15.0.0",
"p-map": "^4.0.0",
"single-user-cache": "^1.0.0",
"tiny-lru": "^11.0.0",
"use-strict": "1.0.1",
"ws": "^8.11.0"
}
}