generated from apollographql/typescript-repo-template
-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
66 lines (66 loc) · 1.98 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
{
"name": "@apollo/server-plugin-operation-registry",
"description": "Apollo Server operation registry plugin",
"version": "4.0.1",
"author": "Apollo <[email protected]>",
"repository": {
"type": "git",
"url": "apollographql/server-plugin-operation-registry"
},
"license": "MIT",
"homepage": "https://github.com/apollographql/server-plugin-operation-registry#readme",
"bugs": {
"url": "https://github.com/apollographql/server-plugin-operation-registry/issues"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"engines": {
"node": ">=14.0"
},
"scripts": {
"build": "tsc --build tsconfig.build.json",
"clean": "git clean -dfqX",
"install-with-npm-8.5": "npm i -g npm@^8.5.0 && npm i",
"prepack": "npm run build",
"prettier:check": "prettier --check .",
"prettier:fix": "prettier --write .",
"publish-changeset": "changeset publish",
"test": "jest",
"test:ci": "jest --coverage --ci --maxWorkers=2 --reporters=default --reporters=jest-junit",
"watch": "tsc --build --watch"
},
"devDependencies": {
"@changesets/changelog-github": "0.5.0",
"@changesets/cli": "2.27.11",
"@jest/types": "29.6.3",
"@types/jest": "29.5.14",
"@types/node": "12.20.55",
"apollo-server-core": "3.13.0",
"graphql-tag": "2.12.6",
"jest": "29.7.0",
"jest-junit": "15.0.0",
"nock": "13.5.6",
"prettier": "2.8.8",
"ts-jest": "29.2.5",
"ts-node": "10.9.2",
"typescript": "4.9.5"
},
"dependencies": {
"@apollo/utils.createhash": "^2.0.0",
"@apollo/utils.operationregistrysignature": "^2.0.0",
"apollo-server-caching": "^3.3.0",
"apollo-server-env": "^4.2.1",
"apollo-server-errors": "^3.3.1",
"apollo-server-plugin-base": "^3.5.1",
"fast-json-stable-stringify": "^2.1.0",
"loglevel": "^1.8.0",
"make-fetch-happen": "^8.0.9"
},
"peerDependencies": {
"graphql": "14.x || 15.x || 16.x"
},
"volta": {
"node": "18.20.5",
"npm": "9.9.4"
}
}