-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.32 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
{
"name": "graphql-auto-federate",
"version": "0.3.8",
"description": "Automatically federate a GraphQL service",
"main": "index.js",
"scripts": {
"lint": "eslint .",
"test": "tap test/*.test.js",
"prepare": "npx husky"
},
"keywords": [
"graphql",
"federation"
],
"author": "Simone Sanfratello <simone.sanfratello@nearform.com>",
"license": "MIT",
"devDependencies": {
"@commitlint/cli": "^19.0.3",
"@commitlint/config-conventional": "^19.0.3",
"@mercuriusjs/federation": "^3.0.0",
"@mercuriusjs/gateway": "^3.0.0",
"dedent": "^1.0.2",
"eslint": "^8.16.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-prettier": "^5.0.0",
"fastify": "^4.0.3",
"get-port": "7.1.0",
"husky": "^9.0.11",
"lint-staged": "^15.0.1",
"mercurius": "^14.0.0",
"prettier": "^3.0.1",
"tap": "^16.3.0"
},
"lint-staged": {
"*.{js,jsx}": "eslint --cache --fix"
},
"dependencies": {
"graphql": "^16.5.0",
"merge-options": "^3.0.4",
"rfdc": "^1.3.0",
"undici": "^6.0.1"
},
"homepage": "https://github.com/nearform/graphql-auto-federate",
"repository": {
"type": "git",
"url": "git+https://github.com/nearform/graphql-auto-federate.git"
},
"bugs": {
"url": "https://github.com/nearform/graphql-auto-federate/issues"
}
}