forked from urql-graphql/urql
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
114 lines (114 loc) · 3.12 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
{
"private": true,
"scripts": {
"test": "vitest",
"check": "tsc",
"lint": "eslint --ext=js,jsx,ts,tsx .",
"build": "node ./scripts/actions/build-all.mjs",
"postinstall": "node ./scripts/prepare/postinstall.js",
"pack": "node ./scripts/actions/pack-all.mjs",
"changeset:version": "node ./scripts/changesets/version.mjs",
"changeset:publish": "changeset publish"
},
"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",
"graphql": "^16.6.0",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-is": "^17.0.2",
"styled-components": "^5.2.3",
"vite": "^3.2.4",
"wonka": "^6.3.2"
}
},
"devDependencies": {
"@0no-co/graphql.web": "^1.0.1",
"@actions/artifact": "^1.1.1",
"@actions/core": "^1.10.0",
"@babel/core": "^7.21.5",
"@babel/plugin-transform-block-scoping": "^7.21.0",
"@babel/plugin-transform-react-jsx": "^7.21.5",
"@babel/plugin-transform-typescript": "^7.21.3",
"@changesets/cli": "^2.26.2",
"@changesets/get-github-info": "0.5.2",
"@npmcli/arborist": "^6.2.5",
"@rollup/plugin-babel": "^6.0.3",
"@rollup/plugin-commonjs": "^25.0.0",
"@rollup/plugin-node-resolve": "^15.1.0",
"@rollup/plugin-replace": "^5.0.2",
"@rollup/plugin-terser": "^0.4.1",
"@rollup/pluginutils": "^5.0.2",
"@types/node": "^18.16.3",
"@typescript-eslint/eslint-plugin": "^6.2.1",
"@typescript-eslint/parser": "^6.2.1",
"cypress": "^12.8.1",
"dotenv": "^16.0.3",
"eslint": "^8.46.0",
"eslint-config-prettier": "^8.9.0",
"eslint-plugin-es5": "^1.5.0",
"eslint-plugin-prettier": "^5.0.0",
"eslint-plugin-react": "^7.33.1",
"eslint-plugin-react-hooks": "^4.6.0",
"execa": "^7.1.1",
"glob": "^9.3.0",
"graphql": "^16.6.0",
"husky-v4": "^4.3.8",
"invariant": "^2.2.4",
"jsdom": "^21.1.1",
"lint-staged": "^13.2.2",
"npm-packlist": "^7.0.4",
"npm-run-all": "^4.1.5",
"prettier": "^3.0.0",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-is": "^17.0.2",
"rimraf": "^4.4.0",
"rollup": "^3.21.1",
"rollup-plugin-cjs-check": "^1.0.2",
"rollup-plugin-dts": "^5.3.0",
"rollup-plugin-visualizer": "^5.9.0",
"tar": "^6.1.13",
"terser": "^5.17.1",
"typescript": "^5.1.6",
"vite": "^3.2.4",
"vite-tsconfig-paths": "^4.2.0",
"vitest": "^0.30.1"
},
"dependencies": {
"@actions/github": "^5.1.1",
"node-fetch": "^3.3.1"
}
}