-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
103 lines (103 loc) · 2.71 KB
/
package.json
File metadata and controls
103 lines (103 loc) · 2.71 KB
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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
{
"name": "@apollo/client",
"version": "3.3.20",
"description": "A fully-featured caching GraphQL client.",
"private": false,
"keywords": [
"apollo",
"graphql",
"react",
"hooks",
"client",
"cache"
],
"author": "opensource@apollographql.com",
"license": "MIT",
"main": "./main.cjs.js",
"module": "./index.js",
"types": "./index.d.ts",
"sideEffects": false,
"react-native": {
"./dist/cache/inmemory/fixPolyfills.js": "./cache/inmemory/fixPolyfills.native.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/apollographql/apollo-client.git"
},
"bugs": {
"url": "https://github.com/apollographql/apollo-client/issues"
},
"homepage": "https://www.apollographql.com/docs/react/",
"peerDependencies": {
"graphql": "^14.0.0 || ^15.0.0",
"react": "^16.8.0 || ^17.0.0",
"subscriptions-transport-ws": "^0.9.0"
},
"peerDependenciesMeta": {
"react": {
"optional": true
},
"subscriptions-transport-ws": {
"optional": true
}
},
"dependencies": {
"@graphql-typed-document-node/core": "^3.0.0",
"@types/zen-observable": "^0.8.0",
"@wry/context": "^0.6.0",
"@wry/equality": "^0.5.0",
"fast-json-stable-stringify": "^2.0.0",
"graphql-tag": "^2.12.0",
"hoist-non-react-statics": "^3.3.2",
"optimism": "^0.16.0",
"prop-types": "^15.7.2",
"symbol-observable": "^4.0.0",
"ts-invariant": "^0.7.0",
"tslib": "^1.10.0",
"zen-observable": "^0.8.14"
},
"devDependencies": {
"@babel/parser": "7.14.4",
"@graphql-tools/schema": "7.1.5",
"@rollup/plugin-node-resolve": "11.2.1",
"@testing-library/react": "9.4.1",
"@types/fast-json-stable-stringify": "2.0.0",
"@types/fetch-mock": "7.3.3",
"@types/glob": "7.1.3",
"@types/hoist-non-react-statics": "3.3.1",
"@types/jest": "26.0.23",
"@types/lodash": "4.14.170",
"@types/node": "15.12.1",
"@types/react": "17.0.8",
"@types/react-dom": "17.0.2",
"@types/recompose": "0.30.7",
"bundlesize": "0.18.1",
"cross-fetch": "3.1.4",
"crypto-hash": "1.3.0",
"fetch-mock": "7.7.3",
"glob": "7.1.7",
"graphql": "15.5.0",
"jest": "26.6.3",
"jest-fetch-mock": "3.0.3",
"jest-junit": "12.1.0",
"lodash": "4.17.21",
"react": "17.0.2",
"react-dom": "17.0.2",
"recast": "0.20.4",
"recompose": "0.30.0",
"resolve": "1.20.0",
"rimraf": "3.0.2",
"rollup": "1.31.1",
"rollup-plugin-terser": "7.0.2",
"rxjs": "6.6.7",
"subscriptions-transport-ws": "0.9.18",
"terser": "5.7.0",
"ts-jest": "26.5.6",
"ts-node": "10.0.0",
"typescript": "3.9.9",
"wait-for-observables": "1.0.3"
},
"publishConfig": {
"access": "public"
}
}