-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
63 lines (63 loc) · 1.55 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
{
"name": "@matters/apollo-response-cache",
"version": "2.0.0-alpha.0",
"description": "Caching and invalidation mechanisms (plugins, directives) of Apollo GraphQL",
"author": "Matters <hi@matters.news>",
"license": "MIT",
"bugs": {
"url": "https://github.com/thematters/apollo-response-cache/issues"
},
"homepage": "https://github.com/thematters/apollo-response-cache#readme",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "rimraf dist/**/* && tsc",
"format": "prettier --write \"src/**/*.{ts,tsx,json}\"",
"lint": "eslint . --ext .ts,.tsx",
"prepare": "husky install"
},
"repository": {
"type": "git",
"url": "git+https://github.com/thematters/apollo-response-cache.git"
},
"keywords": [
"apollo",
"graphql",
"apollo-graphql",
"cache",
"caching",
"directive",
"plugin"
],
"dependencies": {
"@apollo/cache-control-types": "^1.0.2"
},
"devDependencies": {
"@apollo/server": "^4.7.3",
"@typescript-eslint/eslint-plugin": "^5.59.9",
"cz": "^1.8.2",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^8.42.0",
"eslint-config-prettier": "^8.8.0",
"husky": "^8.0.3",
"ioredis": "^5.3.2",
"prettier": "^2.8.8",
"rimraf": "^5.0.1",
"typescript": "^5.1.3"
},
"peerDenpendencies": {
"@apollo/server": ">=4.0.0"
},
"files": [
"dist/**/*"
],
"prettier": {
"singleQuote": true,
"semi": false
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}