-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
81 lines (81 loc) · 2.68 KB
/
package.json
File metadata and controls
81 lines (81 loc) · 2.68 KB
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
{
"name": "@as-integrations/express4",
"description": "An Apollo Server integration for use with Express v4",
"version": "1.1.2",
"author": "Apollo <packages@apollographql.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/apollo-server-integrations/apollo-server-integration-express4.git"
},
"homepage": "https://github.com/apollo-server-integrations/apollo-server-integration-express4",
"bugs": {
"url": "https://github.com/apollo-server-integrations/apollo-server-integration-express4/issues"
},
"type": "module",
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"types": "dist/esm/index.d.ts",
"exports": {
".": {
"types": {
"require": "./dist/cjs/index.d.ts",
"default": "./dist/esm/index.d.ts"
},
"import": "./dist/esm/index.js",
"require": "./dist/cjs/index.js"
}
},
"engines": {
"node": ">=20"
},
"scripts": {
"compile": "tsc --build tsconfig.build.json",
"postcompile": "echo '{\"type\":\"module\"}' > dist/esm/package.json && echo '{\"type\":\"commonjs\"}' > dist/cjs/package.json",
"clean": "git clean -dfqX",
"prepack": "npm run compile",
"prettier-check": "prettier --check .",
"prettier-fix": "prettier --write .",
"changeset-publish": "npm run compile && changeset publish",
"changeset-check": "changeset status --verbose --since=origin/main",
"changeset-version": "changeset version && npm i",
"spell-check": "cspell lint '**' --no-progress || (echo 'Add any real words to cspell-dict.txt.'; exit 1)",
"test": "jest",
"test:ci": "jest --coverage --ci --maxWorkers=2 --reporters=default --reporters=jest-junit",
"watch": "tsc --build --watch",
"lint": "eslint ."
},
"devDependencies": {
"@apollo/server": "4.12.2",
"@apollo/server-integration-testsuite": "4.12.2",
"@apollo/utils.withrequired": "3.0.0",
"@changesets/changelog-github": "0.5.1",
"@changesets/cli": "2.29.4",
"@eslint/js": "9.28.0",
"@types/compression": "1.8.0",
"@types/cors": "2.8.18",
"@types/express": "4.17.22",
"@types/express-serve-static-core": "4.19.6",
"@types/jest": "29.5.14",
"@types/node": "20.19.0",
"@types/supertest": "6.0.3",
"compression": "1.8.0",
"cors": "2.8.5",
"cspell": "9.0.2",
"eslint": "9.28.0",
"express": "4.21.2",
"graphql": "16.11.0",
"jest": "29.7.0",
"jest-junit": "16.0.0",
"prettier": "3.5.3",
"supertest": "7.1.1",
"ts-jest": "29.3.4",
"ts-node": "10.9.2",
"typescript": "5.8.3",
"typescript-eslint": "8.33.1"
},
"peerDependencies": {
"@apollo/server": "^4.0.0 || ^5.0.0",
"express": "^4.0.0"
}
}