-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
84 lines (84 loc) · 2.34 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
80
81
82
83
84
{
"name": "apollo-magic-refetch",
"version": "0.0.0-development",
"description": "magically refetches relevant queries after creates and deletes",
"sideEffects": false,
"scripts": {
"tc": "toolchain",
"toolchain": "toolchain",
"test": "toolchain test",
"prepublishOnly": "echo This package is meant to be published by semantic-release from the dist build directory. && exit 1"
},
"repository": {
"type": "git",
"url": "https://github.com/jcoreio/apollo-magic-refetch.git"
},
"keywords": [
"apollo",
"apollo-client",
"apollographql",
"cache-invalidation",
"graphql",
"refetch"
],
"author": "Andy Edwards",
"license": "MIT",
"bugs": {
"url": "https://github.com/jcoreio/apollo-magic-refetch/issues"
},
"homepage": "https://github.com/jcoreio/apollo-magic-refetch#readme",
"devDependencies": {
"@babel/eslint-parser": "^7.15.7",
"@babel/plugin-syntax-flow": "^7.14.5",
"@babel/plugin-transform-react-jsx": "^7.14.9",
"@jcoreio/toolchain": "^3.4.0",
"@jcoreio/toolchain-circle": "^3.4.0",
"@jcoreio/toolchain-esnext": "^3.4.0",
"@jcoreio/toolchain-flow": "^3.4.0",
"@jcoreio/toolchain-mocha": "^3.4.0",
"@jcoreio/toolchain-semantic-release": "^3.4.0",
"@jcoreio/toolchain-typescript": "^3.4.0",
"@typescript-eslint/eslint-plugin": "^5.60.0",
"@typescript-eslint/parser": "^5.60.0",
"apollo-cache-inmemory": "^1.3.12",
"apollo-client": "^2.4.8",
"apollo-link-schema": "^1.1.4",
"chai": "^4.3.7",
"copy": "^0.3.2",
"cross-env": "^7.0.3",
"eslint": "^8.43.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-flowtype": "^8.0.3",
"flow-bin": "^0.161.0",
"graphql": "^14.0.2",
"graphql-tools": "^4.0.3",
"mocha": "^10.2.0",
"rimraf": "^3.0.2",
"typescript": "^5.1.0"
},
"optionalDependencies": {
"babel-runtime": "^6.23.0"
},
"peerDependencies": {
"apollo-client": "^2.3.0",
"graphql": "*"
},
"dependencies": {
"@babel/runtime": "^7.18.6",
"@types/graphql": "14.0.2",
"graphql-tag": "^2.9.2"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
"./package.json": "./package.json",
".": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
},
"engines": {
"node": ">=16"
},
"packageManager": "[email protected]"
}