-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
79 lines (79 loc) · 2.22 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
77
78
79
{
"name": "apollo-field-cache-resolver",
"version": "0.8.0",
"description": "A wrapper for your apollo graphql resolvers that uses your cache hints to cache the field",
"main": "dist/index.js",
"files": [
"dist",
"LICENSE",
"README.md",
"package-lock.json",
"package.json"
],
"scripts": {
"build": "tsc -p .",
"test:watch": "jest --watch",
"test": "npm run test:types && jest",
"test:types": "tsc --noEmit",
"jest:cache-clear": "jest --clearCache",
"prepare": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Otard95/apollo-cache-field-resolver.git"
},
"keywords": [
"graphql",
"apollo",
"gql",
"resolver",
"cache"
],
"author": "Stian Myklebostad (https://github.com/Otard95)",
"license": "MIT",
"bugs": {
"url": "https://github.com/Otard95/apollo-cache-field-resolver/issues"
},
"homepage": "https://github.com/Otard95/apollo-cache-field-resolver#readme",
"peerDependencies": {
"apollo-server-core": "^3.5.0",
"apollo-server-types": "^3.4.0",
"graphql": ">=15.3.0 <=16.3.0",
"ioredis": ">=4.0.0 <=5.0.0"
},
"peerDependenciesMeta": {
"ioredis": {
"optional": true
}
},
"devDependencies": {
"@commitlint/cli": "13.2.1",
"@commitlint/config-conventional": "13.2.0",
"@semantic-release/changelog": "6.0.0",
"@semantic-release/commit-analyzer": "9.0.1",
"@semantic-release/git": "10.0.0",
"@semantic-release/github": "8.0.1",
"@semantic-release/npm": "8.0.2",
"@semantic-release/release-notes-generator": "10.0.2",
"@types/ioredis": "^4.28.8",
"@types/ioredis-mock": "^5.6.0",
"@types/jest": "^27.4.1",
"@typescript-eslint/eslint-plugin": "5.1.0",
"@typescript-eslint/parser": "5.1.0",
"apollo-server-types": "^3.4.0",
"casual": "^1.6.2",
"eslint": "8.0.1",
"eslint-config-prettier": "8.3.0",
"eslint-plugin-prettier": "4.0.0",
"graphql": "15.8.0",
"ioredis": ">=4.0.0 <=5.0.0",
"ioredis-mock": "^8.2.2",
"jest": "^27.5.1",
"lint-staged": "11.2.3",
"prettier": "2.4.1",
"semantic-release": "18.0.0",
"ts-jest": "^27.1.3",
"typescript": "^4.6.2",
"utility-types": "^3.10.0"
}
}