-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.3 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
{
"name": "react-urql",
"version": "1.0.0",
"description": "Nhost React URQL client",
"license": "MIT",
"keywords": [
"nhost",
"hasura",
"storage",
"auth",
"authentication",
"graphql",
"postgresql",
"realtime",
"react",
"urql"
],
"author": "Nhost",
"homepage": "https://nhost.io",
"bugs": "https://github.com/nhost/react-urql/issues",
"repository": {
"type": "git",
"url": "git+https://github.com/nhost/react-urql.git"
},
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"files": [
"./dist"
],
"np": {
"yarn": true,
"contents": "/dist"
},
"scripts": {
"dev": "./node_modules/.bin/babel src -w -d dist",
"build": "./node_modules/.bin/babel src -d dist",
"test": "echo \"Error: no test specified\" && exit 1"
},
"dependencies": {
"@urql/exchange-auth": "^0.1.0",
"graphql": "^15.3.0",
"isomorphic-unfetch": "^3.1.0",
"isomorphic-ws": "^4.0.1",
"regenerator-runtime": "^0.13.7",
"subscriptions-transport-ws": "^0.9.17",
"urql": "^1.10.1"
},
"peerDependencies": {
"react": "^16.6.1",
"react-dom": "^16.6.3"
},
"devDependencies": {
"@babel/cli": "^7.10.4",
"@babel/core": "^7.10.4",
"@babel/preset-env": "^7.10.4",
"@babel/preset-react": "^7.10.4"
}
}