forked from apollographql/federation
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
89 lines (89 loc) · 3.46 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
{
"name": "apollo-federation-monorepo",
"private": true,
"license": "MIT",
"repository": "github:apollographql/federation",
"scripts": {
"clean": "git clean -dfqX -- ./target ./node_modules **/{dist,node_modules}/ ./*/tsconfig*tsbuildinfo",
"compile:stage-01": "tsc --build tsconfig.build-stage-01.json",
"compile:stage-02": "lerna run --scope @apollo/harmonizer rollup",
"compile:stage-03": "tsc --build tsconfig.build-stage-03.json",
"compile:for-harmonizer-build-rs": "npm run compile:stage-01 && npm run compile:stage-02",
"compile": "npm run compile:stage-01 && npm run compile:stage-02 && npm run compile:stage-03",
"compile:clean": "npm run compile:stage-01 -- --clean && npm run compile:stage-02 && npm run compile:stage-03 -- --clean",
"watch": "npm run compile && tsc --build tsconfig.json --watch",
"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"
},
"engines": {
"node": ">=12.13.0 <17.0",
"npm": "7.x"
},
"dependencies": {
"@apollo/federation": "file:federation-js",
"@apollo/gateway": "file:gateway-js",
"@apollo/harmonizer": "file:harmonizer",
"@apollo/query-planner": "file:query-planner-js",
"@apollographql/apollo-tools": "0.5.1",
"apollo-federation-integration-testsuite": "file:federation-integration-testsuite-js"
},
"devDependencies": {
"@graphql-codegen/cli": "1.21.7",
"@graphql-codegen/typescript": "1.23.0",
"@graphql-codegen/typescript-operations": "1.18.4",
"@opentelemetry/node": "0.23.0",
"@rollup/plugin-commonjs": "19.0.1",
"@rollup/plugin-node-resolve": "13.0.4",
"@types/bunyan": "1.8.7",
"@types/deep-equal": "1.0.1",
"@types/deep-freeze": "0.1.2",
"@types/jest": "26.0.24",
"@types/lodash.xorby": "4.7.6",
"@types/loglevel": "1.5.4",
"@types/nock": "10.0.3",
"@types/node": "12.20.17",
"@types/node-fetch": "2.5.11",
"apollo-link": "1.2.14",
"apollo-link-http": "1.5.17",
"apollo-server": "3.0.2",
"apollo-server-env": "4.0.2",
"bunyan": "1.8.15",
"deep-freeze": "0.0.1",
"graphql": "15.5.1",
"graphql-tag": "2.12.5",
"jest": "26.6.3",
"jest-config": "27.0.6",
"jest-cucumber": "3.0.1",
"jest-junit": "12.2.0",
"lerna": "4.0.0",
"log4js": "6.3.0",
"mocked-env": "1.3.5",
"nock": "13.1.1",
"node-fetch": "2.6.1",
"prettier": "2.3.2",
"rollup": "2.51.1",
"rollup-plugin-node-polyfills": "0.2.1",
"strip-indent": "3.0.0",
"ts-jest": "26.5.6",
"typescript": "4.3.5",
"winston": "3.3.3",
"winston-transport": "4.4.0"
},
"jest": {
"projects": [
"<rootDir>/federation-js",
"<rootDir>/federation-integration-testsuite-js",
"<rootDir>/gateway-js",
"<rootDir>/query-planner-js"
]
}
}