-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
84 lines (84 loc) · 2.11 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
83
84
{
"name": "graphql-federation-gateway-audit",
"version": "1.0.0",
"private": true,
"type": "module",
"description": "Audit tool for Apollo Federation Gateway",
"repository": {
"type": "git",
"url": "the-guild-org/graphql-federation-gateway-audit"
},
"homepage": "https://the-guild.dev/graphql/hive/federation-gateway-audit",
"author": {
"email": "[email protected]",
"name": "The Guild",
"url": "https://the-guild.dev"
},
"license": "MIT",
"bin": {
"graphql-federation-audit": "./dist/cli.js"
},
"main": "dist/cli.js",
"module": "dist/cli.js",
"exports": {
".": {
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"default": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
},
"./package.json": "./package.json"
},
"typings": "dist/index.d.ts",
"typescript": {
"definition": "dist/index.d.ts"
},
"publishConfig": {
"registry": "https://registry.npmjs.org",
"access": "public",
"directory": "dist"
},
"sideEffects": false,
"scripts": {
"start": "tsx ./src/cli.ts",
"summary": "tsx ./src/summary.ts",
"build": "tsc",
"typecheck": "tsc --noEmit",
"format": "prettier --write .",
"postinstall": "npx tsc --project tsconfig.json --noCheck --noResolve"
},
"dependencies": {
"@apollo/composition": "2.9.3",
"@apollo/subgraph": "2.9.3",
"async-retry": "1.3.3",
"dotenv": "16.4.7",
"fets": "0.8.4",
"get-port": "7.1.0",
"graphql": "16.10.0",
"graphql-yoga": "5.10.6",
"jest-diff": "29.7.0",
"kill-port-process": "3.2.1",
"wait-on": "8.0.1",
"detect-port": "2.1.0",
"yargs": "17.7.2"
},
"devDependencies": {
"@apollo/gateway": "2.9.3",
"@apollo/server": "4.11.2",
"@types/async-retry": "1.4.9",
"@types/express": "5.0.0",
"@types/node": "22.10.2",
"@types/wait-on": "5.3.4",
"@types/yargs": "17.0.33",
"@types/detect-port": "1.3.5",
"express": "5.0.1",
"prettier": "3.4.2",
"tsx": "4.19.2",
"typescript": "5.7.2",
"wgc": "0.71.2"
}
}