forked from apollographql/apollo-server
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
113 lines (113 loc) · 3.96 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
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
{
"name": "apollo-server-monorepo",
"private": true,
"license": "MIT",
"repository": "github:apollographql/apollo-server",
"type": "module",
"scripts": {
"clean": "git clean -dfqX -- ./node_modules **/{dist,node_modules}/ **/tsconfig*tsbuildinfo",
"precompile": "node scripts/precompile.mjs",
"compile": "tsc --build tsconfig.build.json",
"postcompile": "node scripts/postcompile.mjs",
"watch": "tsc --build tsconfig.esm.json --watch",
"pretest": "npm run compile",
"test": "jest --verbose",
"test:watch": "jest --verbose --watchAll",
"test:smoke": "npm run test:smoke:prepare && npm run test:smoke:run",
"test:smoke:prepare": "smoke-test/prepare.sh",
"test:smoke:run": "smoke-test/smoke-test.sh",
"test:ci": "npm run coverage -- --ci --maxWorkers=2 --reporters=default --reporters=jest-junit",
"test:one-integration": "npm run test -- packages/server/src/__tests__/express4/integration.test.ts",
"coverage": "npm test -- --coverage",
"coverage:upload": "codecov",
"codegen": "graphql-codegen",
"codegen-check": "(npm run codegen && npm run compile) || (echo 'Current schema types are incompatible with existing usage. Update generated types with `npm run codegen` and resolve any TypeScript errors.'; exit 1)",
"lint": "eslint .",
"prettier-check": "prettier -v && prettier --check .",
"prettier-fix": "prettier -v && prettier --write .",
"spell-check": "cspell lint '**' '.changeset/**' --no-progress || (echo 'Add any real words to cspell-dict.txt.'; exit 1)",
"changeset-publish": "npm run compile && changeset publish",
"changeset-check": "changeset status --verbose --since=origin/main",
"changeset-version": "changeset version && npm i"
},
"workspaces": [
"packages/*"
],
"engines": {
"node": ">=14.16.0",
"npm": ">=8.5.0"
},
"devDependencies": {
"@apollo/client": "3.11.1",
"@apollo/gateway": "2.8.4",
"@apollo/subgraph": "2.8.4",
"@apollo/utils.createhash": "2.0.1",
"@changesets/changelog-github": "0.5.0",
"@changesets/cli": "2.27.7",
"@graphql-codegen/cli": "3.3.1",
"@graphql-codegen/typescript-operations": "3.0.4",
"@graphql-tools/mock": "8.7.20",
"@graphql-tools/schema": "9.0.19",
"@rollup/plugin-commonjs": "25.0.8",
"@types/async-retry": "1.4.8",
"@types/compression": "1.7.5",
"@types/cors": "2.8.17",
"@types/express": "4.17.21",
"@types/express-serve-static-core": "4.19.5",
"@types/lodash": "4.17.7",
"@types/lodash.sumby": "4.6.9",
"@types/lodash.xorby": "4.7.9",
"@types/negotiator": "0.6.3",
"@types/node": "14.18.63",
"@types/node-fetch": "2.6.11",
"@types/qs-middleware": "1.0.4",
"@types/retry": "0.12.5",
"@types/superagent": "4.1.24",
"@types/supertest": "2.0.16",
"@types/test-listen": "1.1.2",
"@types/type-is": "1.6.6",
"@types/uuid": "9.0.8",
"@types/whatwg-mimetype": "3.0.2",
"@typescript-eslint/eslint-plugin": "5.62.0",
"@typescript-eslint/parser": "5.62.0",
"@vendia/serverless-express": "4.12.6",
"awaiting": "3.0.0",
"codecov": "3.8.3",
"compression": "1.7.4",
"cors": "2.8.5",
"cspell": "6.31.3",
"eslint": "8.57.0",
"eslint-plugin-import": "2.29.1",
"express": "4.20.0",
"graphql": "16.9.0",
"graphql-subscriptions": "2.0.0",
"graphql-tag": "2.12.6",
"jest": "29.7.0",
"jest-config": "29.7.0",
"jest-junit": "16.0.0",
"jest-mock": "29.7.0",
"jest-mock-random": "1.1.1",
"jest-serializer-html": "7.1.0",
"lodash.sumby": "4.6.0",
"nock": "13.5.4",
"node-fetch": "2.7.0",
"prettier": "3.3.3",
"prettier-2": "npm:[email protected]",
"qs-middleware": "1.0.3",
"requisition": "1.7.0",
"rollup": "3.29.5",
"supertest": "6.3.4",
"test-listen": "1.1.0",
"ts-jest": "29.2.3",
"typescript": "5.4.2"
},
"jest": {
"projects": [
"<rootDir>/packages/*/jest.config.js"
]
},
"volta": {
"node": "20.16.0",
"npm": "9.9.3"
}
}