-
-
Notifications
You must be signed in to change notification settings - Fork 22
/
Copy pathpackage.json
94 lines (94 loc) · 2.68 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
85
86
87
88
89
90
91
92
93
94
{
"name": "graphql-react",
"version": "15.0.0",
"description": "A GraphQL client for React using modern context and hooks APIs that’s lightweight (< 4 kB) but powerful; the first Relay and Apollo alternative with server side rendering.",
"license": "MIT",
"author": {
"name": "Jayden Seric",
"email": "[email protected]",
"url": "https://jaydenseric.com"
},
"repository": "github:jaydenseric/graphql-react",
"homepage": "https://github.com/jaydenseric/graphql-react#readme",
"bugs": "https://github.com/jaydenseric/graphql-react/issues",
"funding": "https://github.com/sponsors/jaydenseric",
"keywords": [
"graphql",
"client",
"query",
"mutation",
"file",
"upload",
"multipart",
"react",
"hooks",
"ssr",
"esm",
"mjs"
],
"files": [
"private",
"public"
],
"sideEffects": false,
"main": "public",
"exports": {
".": {
"import": "./public/index.mjs",
"require": "./public/index.js"
},
"./public/*": "./public/*",
"./package": "./package.json",
"./package.json": "./package.json"
},
"engines": {
"node": "^12.20 || >= 14.13"
},
"browserslist": "Node 12.20 - 13 and Node < 13, Node >= 14.13, > 0.5%, not OperaMini all, not IE > 0, not dead",
"peerDependencies": {
"react": "16.14 - 17",
"react-dom": "16.14 - 17"
},
"dependencies": {
"extract-files": "^11.0.0",
"isobject": "^4.0.0",
"react-waterfall-render": "^2.0.0"
},
"devDependencies": {
"@testing-library/react-hooks": "^7.0.0",
"abort-controller": "^3.0.0",
"coverage-node": "^5.0.1",
"esbuild": "^0.12.8",
"eslint": "^7.28.0",
"eslint-config-env": "^20.0.1",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-compat": "^3.9.0",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-jsdoc": "^35.1.3",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-react": "^7.24.0",
"eslint-plugin-react-hooks": "^4.2.0",
"event-target-shim": "^6.0.2",
"filter-console": "^0.1.1",
"formdata-node": "^3.5.3",
"gzip-size": "^6.0.0",
"jsdoc-md": "^11.0.0",
"node-fetch": "^3.0.0-beta.9",
"prettier": "^2.3.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-test-renderer": "^17.0.2",
"revertable-globals": "^2.0.0",
"test-director": "^6.0.0"
},
"scripts": {
"jsdoc": "jsdoc-md",
"test": "npm run test:eslint && npm run test:prettier && npm run test:jsdoc && npm run test:api",
"test:eslint": "eslint --ext mjs,js .",
"test:prettier": "prettier -c .",
"test:jsdoc": "jsdoc-md -c",
"test:api": "coverage-node test/index.mjs",
"prepublishOnly": "npm test"
}
}