forked from urql-graphql/urql
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
119 lines (119 loc) · 3.13 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
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
{
"private": true,
"workspaces": [
"packages/*",
"exchanges/*"
],
"scripts": {
"test": "jest",
"check": "tsc",
"lint": "eslint --ext=js,jsx,ts,tsx .",
"build": "node ./scripts/actions/build-all.js",
"postinstall": "node ./scripts/prepare/postinstall.js",
"pack": "node ./scripts/actions/pack-all.js"
},
"jest": {
"projects": [
"<rootDir>/packages/*",
"<rootDir>/exchanges/*"
]
},
"eslintConfig": {
"root": true,
"extends": [
"./scripts/eslint/preset.js"
]
},
"overrides": [
{
"files": [
"examples/**/*"
],
"extends": [
"./scripts/eslint/js-preset.js"
],
"rules": {
"import/no-unresolved": "off"
}
}
],
"eslintIgnore": [
"packages/site/dist-prod",
"docs"
],
"prettier": {
"singleQuote": true,
"arrowParens": "avoid",
"trailingComma": "es5"
},
"lint-staged": {
"*.{ts,tsx}": "eslint -c scripts/eslint/preset.js --fix",
"*.{js,jsx}": "eslint -c scripts/eslint/js-preset.js --fix",
"*.json": "prettier --write",
"*.md": "prettier --write"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged --quiet --relative"
}
},
"resolutions": {
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-is": "^17.0.2"
},
"devDependencies": {
"@actions/artifact": "^0.5.1",
"@babel/core": "^7.13.16",
"@babel/plugin-transform-object-assign": "^7.12.13",
"@babel/plugin-transform-react-jsx": "^7.13.12",
"@changesets/cli": "^2.16.0",
"@changesets/get-github-info": "0.5.0",
"@rollup/plugin-babel": "^5.3.0",
"@rollup/plugin-buble": "^0.21.3",
"@rollup/plugin-commonjs": "^18.0.0",
"@rollup/plugin-node-resolve": "^11.2.1",
"@rollup/plugin-replace": "^2.4.2",
"@rollup/plugin-sucrase": "^3.1.0",
"@rollup/pluginutils": "^4.1.0",
"@sucrase/jest-plugin": "^2.1.0",
"@types/jest": "^26.0.23",
"@typescript-eslint/eslint-plugin": "^4.22.0",
"@typescript-eslint/parser": "^4.22.0",
"babel-plugin-modular-graphql": "^1.1.0",
"babel-plugin-transform-async-to-promises": "^0.8.15",
"cypress": "^9.5.1",
"dotenv": "^8.2.0",
"eslint": "^7.25.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-es5": "^1.5.0",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-jest": "^24.3.6",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-react": "^7.23.2",
"eslint-plugin-react-hooks": "^4.2.0",
"execa": "^5.0.0",
"glob": "^7.1.6",
"graphql": "^16.0.0",
"husky-v4": "^4.3.8",
"invariant": "^2.2.4",
"jest": "^26.6.3",
"jest-watch-yarn-workspaces": "^1.1.0",
"lint-staged": "^10.5.4",
"npm-packlist": "^2.1.5",
"npm-run-all": "^4.1.5",
"prettier": "^2.2.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-is": "^17.0.2",
"rimraf": "^3.0.2",
"rollup": "^2.45.2",
"rollup-plugin-generate-package-json": "^3.2.0",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-typescript2": "^0.30.0",
"rollup-plugin-visualizer": "^5.4.1",
"tar": "^6.1.0",
"terser": "^5.7.0",
"typescript": "^4.2.4"
}
}