This repository has been archived by the owner on Mar 8, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
84 lines (84 loc) · 2.7 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": "next-urql",
"version": "0.3.0",
"description": "Convenience wrappers for using urql with NextJS.",
"repository": "https://www.github.com/FormidableLabs/next-urql",
"bugs": {
"url": "https://github.com/FormidableLabs/next-urql/issues"
},
"main": "dist/next-urql.js",
"module": "dist/next-urql.es.js",
"source": "src/index.ts",
"types": "dist/types/index.d.ts",
"author": "Formidable",
"license": "MIT",
"scripts": {
"build": "rollup -c rollup.config.js",
"check:ci": "run-s check:types lint format test",
"check:format": "prettier --check {src,__tests__,examples}/*.{ts,tsx,d.ts,js}",
"check:types": "tsc --noEmit",
"clean": "rimraf ./dist ./node_modules/.cache",
"format": "prettier --write {src,__tests__,examples}/*.{ts,tsx,d.ts,js}",
"lint": "eslint src/**/*.{ts,tsx}",
"preversion": "run-s clean test build",
"test": "jest"
},
"devDependencies": {
"@babel/core": "^7.6.4",
"@babel/plugin-proposal-object-rest-spread": "^7.6.2",
"@babel/plugin-transform-object-assign": "^7.8.3",
"@babel/preset-env": "^7.6.3",
"@babel/preset-typescript": "^7.6.0",
"@rollup/plugin-buble": "^0.21.1",
"@rollup/plugin-commonjs": "^11.0.2",
"@rollup/plugin-node-resolve": "^7.1.0",
"@rollup/plugin-replace": "^2.3.1",
"@types/enzyme": "^3.10.3",
"@types/enzyme-adapter-react-16": "^1.0.5",
"@types/jest": "^24.0.19",
"@types/node-fetch": "^2.5.4",
"@types/react": "^16.9.6",
"@types/react-dom": "^16.9.2",
"@typescript-eslint/eslint-plugin": "^2.4.0",
"@typescript-eslint/parser": "^2.4.0",
"babel-plugin-transform-async-to-promises": "^0.8.15",
"enzyme": "^3.10.0",
"enzyme-adapter-react-16": "^1.15.1",
"eslint": "^6.5.1",
"eslint-config-prettier": "^6.4.0",
"eslint-plugin-prettier": "^3.1.1",
"eslint-plugin-react": "^7.16.0",
"eslint-plugin-react-hooks": "^2.3.0",
"graphql": "^14.5.8",
"graphql-tag": "^2.10.1",
"isomorphic-unfetch": "^3.0.0",
"jest": "^24.9.0",
"next": "^9.2.1",
"npm-run-all": "^4.1.5",
"prettier": "^1.18.2",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"react-is": "^16.10.2",
"rimraf": "^3.0.0",
"rollup": "^1.25.0",
"rollup-plugin-babel": "^4.3.3",
"rollup-plugin-terser": "^5.1.2",
"rollup-plugin-typescript2": "^0.24.3",
"styled-components": "^4.4.0",
"terser": "^4.3.9",
"ts-jest": "^25.2.0",
"tslib": "^1.10.0",
"typescript": "^3.6.4",
"urql": "^1.6.1"
},
"dependencies": {
"react-ssr-prepass": "^1.1.2"
},
"peerDependencies": {
"isomorphic-unfetch": "^3.0.0",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"react-is": "^16.8.6",
"urql": "^1.1.0"
}
}