-
Notifications
You must be signed in to change notification settings - Fork 93
/
Copy pathpackage.json
40 lines (40 loc) · 1017 Bytes
/
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
{
"name": "graphql-hooks-ssr",
"version": "3.0.1",
"description": "Server side rendering utils for graphql-hooks",
"main": "index.js",
"types": "index.d.ts",
"scripts": {
"clean": "rm -rf ./dist ./es ./lib",
"test": "echo \"Error: no test specified\" && exit 0",
"prepublishOnly": "cp ../../LICENSE ."
},
"keywords": [
"graphql",
"hooks",
"react",
"graphql-hooks",
"cache",
"ssr",
"server-side rendering"
],
"author": "Brian Mullan <[email protected]>",
"license": "Apache-2.0",
"peerDependencies": {
"react": "^18.0.0",
"react-dom": "^18.0.0"
},
"devDependencies": {
"@types/react": "^18.0.0",
"react": "^18.0.0",
"react-dom": "^18.0.0"
},
"repository": {
"type": "git",
"url": "git://github.com/nearform/graphql-hooks.git"
},
"bugs": {
"url": "https://github.com/nearform/graphql-hooks/issues"
},
"homepage": "https://github.com/nearform/graphql-hooks/blob/master/packages/graphql-hooks-ssr#readme"
}