-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
82 lines (82 loc) · 2.43 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
81
82
{
"name": "@profusion/apollo-federation-node-gateway",
"version": "4.0.2",
"main": "./build/lib/index.js",
"types": "./build/lib/index.d.ts",
"author": "Guilherme Iscaro ([email protected])",
"license": "MIT",
"private": false,
"repository": "https://github.com/profusion/apollo-federation-node-gateway",
"scripts": {
"check-types": "tsc --noEmit",
"run-lint": "eslint --max-warnings=0 --ext .ts lib bin test",
"lint": "run-s check-types run-lint",
"lint-staged": "lint-staged",
"generate-code": "tsc",
"build": "run-s lint generate-code",
"prepublishOnly": "run-s build",
"install-peers": "install-peers -f",
"test-newman": "ts-node -r tsconfig-paths/register ./test/index.ts",
"test": "jest",
"prepare": "husky install"
},
"lint-staged": {
"*.{ts,tsx,js,jsx}": [
"eslint",
"jest --bail --findRelatedTests"
]
},
"bin": {
"graphql-generate-type-ids": "./build/bin/graphql-generate-type-ids.js"
},
"engines": {
"yarn": "^1.21.1"
},
"dependencies": {
"@apollo/federation-internals": "^2.5.1",
"@apollo/utils.createhash": "^1.1.0",
"@graphql-tools/utils": "^8.6.12",
"graphql-tag": "^2.12.6",
"lodash.difference": "^4.5.0",
"yargs": "^17.5.1",
"@apollo/composition": "^2.5.1",
"@apollo/gateway": "^2.5.1",
"@apollo/subgraph": "^2.5.1"
},
"peerDependencies": {
"graphql": "^16.5.0"
},
"devDependencies": {
"@commitlint/cli": "^17.0.2",
"@commitlint/config-angular": "^17.0.0",
"@types/jest": "^28.1.0",
"@types/lodash.difference": "^4.5.6",
"@types/newman": "^5.1.3",
"@types/node": "14",
"@types/yargs": "^17.0.10",
"@typescript-eslint/eslint-plugin": "^5.27.0",
"@typescript-eslint/parser": "^5.27.0",
"apollo-graphql": "^0.9.7",
"apollo-server": "^3.3.0",
"eslint": "^8.16.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^8.1.0",
"eslint-import-resolver-typescript": "^2.4.0",
"eslint-plugin-filenames": "^1.3.2",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-prettier": "^4.0.0",
"graphql": "^16.0.0",
"husky": "^8.0.1",
"install-peers-cli": "^2.2.0",
"jest": "^28.1.0",
"lint-staged": "^13.0.0",
"newman": "^5.2.2",
"npm-run-all": "^4.1.5",
"nyc": "^15.1.0",
"prettier": "^2.2.1",
"ts-jest": "^28.0.3",
"ts-node": "^10.8.0",
"tsconfig-paths": "^4.0.0",
"typescript": "^4.2.3"
}
}