This repository has been archived by the owner on Jun 7, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 56
/
package.json
71 lines (71 loc) · 1.84 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
{
"name": "eth-ui",
"version": "0.0.0",
"keywords": [
"ethereum",
"react",
"uniswap",
"workspaces",
"yarn"
],
"scripts": {
"eth-hooks": "yarn workspace eth-hooks",
"wagmi-headless": "yarn workspace wagmi-headless",
"wagmi-tailwind": "yarn workspace wagmi-tailwind",
"docs": "yarn workspace documentation",
"postinstall": "husky install",
"lint": "yarn eth-hooks lint && yarn docs lint",
"lint:fix": "yarn eth-hooks lint --fix && yarn docs lint --fix",
"lint:report": "yarn eth-hooks lint:report",
"format": "yarn eth-hooks format && yarn docs format",
"format:check": "yarn eth-hooks format:check && yarn docs format:check"
},
"private": true,
"workspaces": {
"packages": [
"packages/*"
]
},
"packageManager": "[email protected]",
"devDependencies": {
"chalk": "4.1.2",
"commander": "^9.4.0",
"cross-env": "^7.0.3",
"eslint": "^8.22.0",
"husky": "^8.0.1",
"lint-staged": "^13.0.3",
"pinst": "^3.0.0",
"prettier": "^2.7.1",
"prettier-plugin-solidity": "^1.0.0-dev.23",
"shx": "^0.3.4",
"syncpack": "^8.2.4",
"ts-node": "^10.9.1"
},
"lint-staged": {
"packages/eth-hooks/**/*.{ts,tsx}": [
"yarn workspace eth-hooks lint --fix",
"yarn workspace eth-hooks format"
],
"packages/wagmi-headless/**/*.{ts,tsx}": [
"yarn wagmi-headless lint --fix",
"yarn wagmi-headless format"
],
"packages/wagmi-tailwind/**/*.{ts,tsx}": [
"yarn wagmi-tailwind lint --fix",
"yarn wagmi-tailwind format"
],
"packages/docusaurus/src/**/*.{ts,tsx,js,jsx}": [
"npm run lint --fix",
"npm run format"
],
"packages/docusaurus/**/*.{json}": [
"npm run format"
],
"packages/docusaurus/src/**/*.{md,mdx}": [
"npm run format"
]
},
"volta": {
"node": "16.15.0"
}
}