This repository has been archived by the owner on Feb 1, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
76 lines (76 loc) · 1.92 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
{
"name": "@pocket-tools/apollo-utils",
"version": "0.0.0-development",
"description": "Utilities for apollo implementing services",
"keywords": [
"apollo",
"dataloader",
"cache"
],
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"test": "jest",
"test:watch": "npm run test -- --watch",
"build": "rm -rf dist && tsc",
"lint": "eslint --fix-dry-run \"src/**/*.ts\"",
"lint-fix": "eslint --fix \"src/**/*.ts\"",
"release": "semantic-release",
"release:check": "semantic-release --dryRun"
},
"author": "",
"license": "Apache-2.0",
"devDependencies": {
"@pocket-tools/eslint-config": "2.1.7",
"@pocket-tools/tsconfig": "2.0.1",
"@semantic-release/changelog": "6.0.3",
"@semantic-release/git": "10.0.1",
"@types/chai": "4.3.11",
"@types/deep-equal-in-any-order": "1.0.3",
"@types/jest": "29.5.10",
"@types/md5": "2.3.5",
"chai": "4.3.10",
"ioredis-mock": "8.9.0",
"jest": "29.7.0",
"semantic-release": "22.0.8",
"sinon": "17.0.1",
"ts-jest": "29.1.1",
"ts-node": "10.9.1"
},
"dependencies": {
"@apollo/server": "^4.2.2",
"@apollo/subgraph": "^2.2.2",
"@apollo/utils.keyvaluecache": "3.1.0",
"@jest/globals": "29.7.0",
"@pocket-tools/ts-logger": "^1.2.1",
"@sentry/node": "^7.26.0",
"deep-equal-in-any-order": "^2.0.0",
"graphql": "^16.6.0",
"graphql-tag": "^2.12.6",
"ioredis": "5.3.2",
"luxon": "^3.2.1",
"md5": "^2.3.0"
},
"publishConfig": {
"cache": "~/.npm",
"access": "public"
},
"release": {
"branches": [
"main"
],
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
"@semantic-release/npm",
"@semantic-release/github"
]
},
"repository": {
"type": "git",
"url": "[email protected]:Pocket/apollo-utils.git"
},
"engines": {
"node": ">=20"
}
}