forked from thematters/apollo-response-cache
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
72 lines (72 loc) · 1.88 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
{
"name": "@matters/apollo-response-cache",
"version": "1.4.0-rc.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": "^0.11.1",
"apollo-server-caching": "^3.0.0",
"apollo-server-plugin-base": "^3.0.0",
"lodash": "^4.17.21"
},
"devDependencies": {
"@types/graphql": "^14.5.0",
"@types/ioredis": "^4.26.5",
"@types/lodash": "^4.14.171",
"@types/node": "^16.3.2",
"@typescript-eslint/eslint-plugin": "^4.28.3",
"@typescript-eslint/parser": "^4.28.3",
"apollo-server-cache-redis": "^3.0.0",
"apollo-server-types": "^3.0.0",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^7.30.0",
"eslint-config-prettier": "^8.3.0",
"husky": "^7.0.1",
"prettier": "^2.3.2",
"rimraf": "^3.0.2",
"typescript": "^4.3.5"
},
"peerDependencies": {
"@graphql-tools/utils": "^7.10.0",
"graphql": "^15.5.1",
"lodash": "^4.17.21"
},
"files": [
"dist/**/*"
],
"prettier": {
"singleQuote": true,
"semi": false
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}