forked from apollographql/federation
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
97 lines (97 loc) · 3.55 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
85
86
87
88
89
90
91
92
93
94
95
96
97
{
"name": "apollo-federation-monorepo",
"private": true,
"license": "SEE LICENSE IN ./LICENSE",
"repository": "github:apollographql/federation",
"scripts": {
"clean": "git clean -dfqX -- ./target ./node_modules **/{dist,node_modules}/ ./*/tsconfig*tsbuildinfo",
"compile": "tsc --build tsconfig.build.json",
"compile:clean": "npm run compile -- --clean",
"watch": "npm run compile && tsc --build tsconfig.json --watch",
"version": "npm i --package-lock-only && node ./prompt-update-changelogs.js",
"release:version-bump": "lerna version",
"release:start-ci-publish": "node -p '`Publish (dist-tag:${process.env.APOLLO_DIST_TAG || \"latest\"})`' | git tag -F - \"publish/$(date -u '+%Y%m%d%H%M%S')\" && git push origin \"$(git describe --match='publish/*' --tags --exact-match HEAD)\"",
"pretest": "npm run compile && tsc --build tsconfig.test.json",
"postinstall": "lerna run monorepo-prepare --stream && npm run compile",
"test": "jest --verbose",
"test:clean": "jest --clearCache",
"test:watch": "jest --verbose --watchAll",
"testonly": "npm test",
"test:ci": "npm test -- --ci --maxWorkers=2 --reporters=default --reporters=jest-junit",
"codegen": "graphql-codegen --config codegen.yml",
"codegen:check": "npm run codegen && git diff --exit-code",
"lint": "eslint . --ext .ts",
"error-code-doc": "node ./internals-js/dist/genErrorCodeDoc.js > ./docs/source/errors.md",
"error-code-doc:check": "npm run error-code-doc && git diff --exit-code"
},
"engines": {
"node": ">=12.13.0 <17.0",
"npm": ">=7 <9"
},
"dependencies": {
"@apollo/composition": "file:composition-js",
"@apollo/federation-internals": "file:internals-js",
"@apollo/gateway": "file:gateway-js",
"@apollo/query-graphs": "file:query-graphs-js",
"@apollo/query-planner": "file:query-planner-js",
"@apollo/subgraph": "file:subgraph-js",
"apollo-federation-integration-testsuite": "file:federation-integration-testsuite-js"
},
"devDependencies": {
"@apollo/client": "3.5.10",
"@graphql-codegen/cli": "2.6.2",
"@graphql-codegen/typescript": "2.4.7",
"@graphql-codegen/typescript-operations": "2.3.4",
"@josephg/resolvable": "1.0.1",
"@opentelemetry/node": "0.24.0",
"@types/async-retry": "^1.4.3",
"@types/bunyan": "1.8.8",
"@types/deep-equal": "1.0.1",
"@types/deep-freeze": "0.1.2",
"@types/jest": "27.4.1",
"@types/js-levenshtein": "1.1.1",
"@types/lodash.xorby": "4.7.6",
"@types/loglevel": "1.5.4",
"@types/nock": "10.0.3",
"@types/node": "12.20.47",
"@types/node-fetch": "2.6.1",
"@types/whatwg-url": "8.2.1",
"@typescript-eslint/eslint-plugin": "5.14.0",
"apollo-server": "3.6.3",
"apollo-server-env": "4.2.1",
"bunyan": "1.8.15",
"deep-freeze": "0.0.1",
"graphql": "16.3.0",
"graphql-tag": "2.12.6",
"jest": "27.5.1",
"jest-config": "27.5.1",
"jest-cucumber": "3.0.1",
"jest-junit": "13.0.0",
"lerna": "4.0.0",
"log4js": "6.4.2",
"mocked-env": "1.3.5",
"nock": "13.2.4",
"node-fetch": "2.6.7",
"prettier": "2.5.1",
"prompt-confirm": "2.0.4",
"strip-indent": "3.0.0",
"ts-jest": "27.1.3",
"typescript": "4.6.2",
"winston": "3.6.0",
"winston-transport": "4.5.0"
},
"jest": {
"projects": [
"<rootDir>/composition-js",
"<rootDir>/gateway-js",
"<rootDir>/internals-js",
"<rootDir>/query-graphs-js",
"<rootDir>/query-planner-js",
"<rootDir>/subgraph-js"
]
},
"volta": {
"node": "16.14.0",
"npm": "8.5.3"
}
}