forked from urql-graphql/urql
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
106 lines (106 loc) · 2.89 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
{
"private": true,
"scripts": {
"test": "vitest",
"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"
},
"eslintConfig": {
"root": true,
"extends": [
"./scripts/eslint/preset.js"
]
},
"prettier": {
"singleQuote": true,
"arrowParens": "avoid",
"trailingComma": "es5"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": "eslint -c scripts/eslint/preset.js --fix",
"*.json": "prettier --write",
"*.md": "prettier --write"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged --quiet --relative"
}
},
"pnpm": {
"peerDependencyRules": {
"ignoreMissing": [
"react-native"
],
"allowedVersions": {
"react": "17",
"react-dom": "17",
"react-is": "17",
"styled-components": "5"
}
},
"overrides": {
"@types/react": "^17.0.39",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-is": "^17.0.2",
"styled-components": "^5.2.3",
"wonka": "^6.2.3"
}
},
"devDependencies": {
"@actions/artifact": "^1.1.0",
"@actions/core": "^1.10.0",
"@babel/core": "^7.20.2",
"@babel/plugin-transform-block-scoping": "^7.20.2",
"@babel/plugin-transform-react-jsx": "^7.19.0",
"@changesets/cli": "^2.16.0",
"@changesets/get-github-info": "0.5.0",
"@rollup/plugin-babel": "^6.0.2",
"@rollup/plugin-commonjs": "^23.0.2",
"@rollup/plugin-node-resolve": "^15.0.1",
"@rollup/plugin-replace": "^5.0.0",
"@rollup/plugin-sucrase": "^5.0.0",
"@rollup/plugin-terser": "^0.1.0",
"@rollup/plugin-typescript": "^11.0.0",
"@rollup/pluginutils": "^5.0.0",
"@types/node": "^18.11.9",
"@typescript-eslint/eslint-plugin": "^5.44.0",
"@typescript-eslint/parser": "^5.44.0",
"cypress": "^11.0.0",
"dotenv": "^8.2.0",
"eslint": "^8.28.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-es5": "^1.5.0",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-react": "^7.31.11",
"eslint-plugin-react-hooks": "^4.6.0",
"execa": "^5.0.0",
"glob": "^7.1.6",
"graphql": "^16.0.0",
"husky-v4": "^4.3.8",
"invariant": "^2.2.4",
"jsdom": "^20.0.3",
"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": "^3.3.0",
"rollup-plugin-cjs-check": "^1.0.2",
"rollup-plugin-dts": "^5.1.1",
"rollup-plugin-generate-package-json": "^3.2.0",
"rollup-plugin-visualizer": "^5.8.0",
"tar": "^6.1.0",
"terser": "^5.14.1",
"typescript": "^4.9.5",
"vite": "^3.0.0",
"vite-tsconfig-paths": "^4.0.0-alpha.3",
"vitest": "^0.25.3"
}
}