-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
68 lines (68 loc) · 2.25 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
{
"name": "@apollosolutions/federation-2-readiness",
"version": "1.0.0",
"main": "src/index.js",
"bin": "bin/index.js",
"repository": "https://github.com/apollosolutions/federation-2-readiness",
"author": "[email protected]",
"license": "MIT",
"type": "module",
"engines": {
"node": ">= 16"
},
"scripts": {
"codegen": "graphql-codegen --config codegen.yml",
"codegen:compile": "tsc -p studio",
"codegen:watch": "concurrently \"yarn codegen --watch\" \"yarn codegen:compile --watch\"",
"test": "node --experimental-vm-modules $(yarn bin)/jest src",
"test:debug": "node --inspect-brk --experimental-vm-modules $(yarn bin)/jest src",
"dev": "node bin/index.js",
"dev:customer": "node bin/index.js audit --account <account-name>",
"check:lint": "yarn eslint",
"check:tsc": "yarn tsc"
},
"dependencies": {
"@apollo/composition": "^2.6.1",
"@apollo/federation-1": "npm:@apollo/[email protected]",
"@apollo/federation-internals": "^2.6.1",
"@apollo/gateway": "^2.6.1",
"@apollo/query-planner": "^2.6.1",
"@apollo/query-planner-1": "npm:@apollo/[email protected]",
"@apollo/subgraph": "^2.6.1",
"@urql/core": "^2.6.0",
"cli-progress": "^3.11.2",
"clipanion": "^3.2.0-rc.11",
"fuzzy": "^0.1.3",
"graphql": "^16.8.1",
"inquirer": "^8.2.4",
"inquirer-autocomplete-prompt": "^2.0.0",
"jest-diff": "^28.1.1",
"js-yaml": "^4.1.0",
"make-fetch-happen": "^10.1.8",
"ora": "^6.1.2",
"parse-duration": "^1.0.2",
"typanion": "^3.7.2"
},
"devDependencies": {
"@graphql-codegen/cli": "^2.8.0",
"@graphql-codegen/typed-document-node": "^2.3.1",
"@graphql-codegen/typescript": "^2.4.3",
"@graphql-codegen/typescript-operations": "^2.5.1",
"@graphql-eslint/eslint-plugin": "^3.10.5",
"@types/cli-progress": "^3.11.0",
"@types/inquirer": "^8.2.0",
"@types/inquirer-autocomplete-prompt": "^1.3.3",
"@types/jest": "^28.1.4",
"@types/make-fetch-happen": "^9.0.1",
"concurrently": "^7.3.0",
"eslint": "^8.19.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.25.4",
"jest": "^28.1.2",
"typescript": "^4.7.4"
},
"prettier": {
"singleQuote": true,
"trailingComma": "all"
}
}