forked from scaffold-eth/eth-components
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
180 lines (180 loc) · 5.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
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
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
{
"name": "eth-components",
"version": "3.6.0-beta04",
"description": "A set of react components to turbocharge buidling",
"author": "Shravan Sunder <[email protected]>",
"repository": "https://github.com/scaffold-eth/eth-components.git",
"main": "index.js",
"module": "index.mjs",
"browser": {
"./index.js": "./index.js",
"./index.mjs": "./index.mjs"
},
"types": "index.d.ts",
"engines": {
"node": ">=14"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"contributors": [
{
"name": "Austin Griffith",
"url": "https://github.com/austintgriffith"
},
{
"name": "Shravan Sunder",
"url": "https://github.com/ShravanSunder"
},
{
"name": "Felipe Novaes Rocha",
"url": "https://github.com/kamikazebr"
}
],
"scripts": {
"watch": "tsc -w --noEmit",
"clean": "shx rm -rf ./lib",
"build": "yarn clean && tsup && ts-patch i -s && tsc -p tsconfig.build.json",
"package": "shx cp -R package.json ./lib && shx cp -R README.md ./lib",
"publish:pre": "yarn clean && yarn build && yarn package",
"publish:notag": "yarn build && yarn package && cd lib && npm publish",
"publish:yalc": "yarn build && yarn package && cd lib && yalc publish --no-script --push",
"publish:next": "yarn publish:notag --tag next",
"publish:latest": "yarn publish:notag --tag latest",
"dev:link": "yalc link eth-hooks",
"dev:unlink": "yalc remove eth-hooks",
"docs": "yarn typedoc --listInvalidSymbolLinks && shx mv ./docs/api-typedocs/readme.md ./docs/api-typedocs/api-overview.md",
"lint": "eslint --config ./.eslintrc --ignore-path ./.eslintignore ./src/**/*.(ts|tsx|js|jsx) ",
"format": "yarn prettier -w ./src ",
"format:check": "yarn prettier -c ./src ",
"test": "yarn hardhat:test",
"hardhat:test": "yarn hardhat:run test --network hardhat",
"hardhat:run": "yarn hardhat:env yarn hardhat",
"hardhat:chain": "yarn hardhat:run node --no-deploy",
"hardhat:compile": "yarn hardhat:run compile",
"hardhat:env": "cross-env TS_NODE_PROJECT=tsconfig.testing.json TS_NODE_TRANSPILE_ONLY=1",
"prepare": "cd .. && yarn husky install",
"postinstall": "husky install",
"prepublishOnly": "pinst --disable",
"postpublish": "pinst --enable"
},
"dependencies": {
"@ethersproject/abi": "^5.6.4",
"@ethersproject/abstract-provider": "^5.6.1",
"@ethersproject/address": "^5.6.1",
"@ethersproject/bignumber": "^5.6.2",
"@ethersproject/bytes": "^5.6.1",
"@ethersproject/contracts": "^5.6.2",
"@ethersproject/networks": "^5.6.4",
"@ethersproject/providers": "^5.6.8",
"@ethersproject/signing-key": "^5.6.2",
"@ethersproject/solidity": "^5.6.1",
"@ethersproject/units": "^5.6.1",
"@ethersproject/wallet": "^5.6.2",
"axios": "^0.27.2",
"bnc-notify": "^1.9.5",
"eth-hooks": "5.0.2-beta27",
"ethers": "^5.6.8",
"qrcode.react": "^3.0.2",
"react-blockies": "^1.4.1",
"react-qr-reader": "^3.0.0-beta-1",
"ts-invariant": "^0.10.3",
"use-debounce": "^8.0.1",
"usehooks-ts": "^2.5.4"
},
"peerDependencies": {
"@ant-design/icons": "^4.2",
"antd": "^4.7",
"react": ">=17",
"react-css-theme-switcher": "^0.3.0",
"react-dom": ">=17"
},
"devDependencies": {
"@ant-design/icons": "^4.7.0",
"@atixlabs/hardhat-time-n-mine": "^0.0.5",
"@nomiclabs/hardhat-ethers": "^2.0.6",
"@nomiclabs/hardhat-waffle": "^2.0.3",
"@testing-library/dom": "^8.13.0",
"@testing-library/react": "^13.3.0",
"@testing-library/react-hooks": "^8.0.0",
"@testing-library/user-event": "^14.2.0",
"@types/chai": "^4.3.1",
"@types/mocha": "^9.1.1",
"@types/node": "^16.11.40",
"@types/pretty-time": "^1.1.2",
"@types/qrcode.react": "^1.0.2",
"@types/react": "^18.0.12",
"@types/react-blockies": "^1.4.1",
"@types/react-dom": "^18.0.5",
"@types/react-qr-reader": "^2.1.4",
"@types/react-router-dom": "^5.3.3",
"@types/react-stack-grid": "^0.7.3",
"@typescript-eslint/eslint-plugin": "^5.28.0",
"@typescript-eslint/parser": "^5.28.0",
"antd": "^4.21.2",
"chai": "^4.3.6",
"cross-env": "^7.0.3",
"esbuild": "^0.14.43",
"esbuild-node-externals": "^1.4.1",
"eslint": "^8.17.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jest": "^26.5.3",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-mocha": "^10.0.5",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.30.0",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-testing-library": "^5.5.1",
"eslint-plugin-unused-imports": "^2.0.0",
"ethereum-waffle": "^3.4.4",
"global-jsdom": "^8.4.0",
"hardhat": "^2.9.9",
"hardhat-gas-reporter": "^1.0.8",
"husky": "^8.0.1",
"jsdom": "^19.0.0",
"lint-staged": "^13.0.1",
"mocha": "^10.0.0",
"mocha-github-actions-reporter": "^0.2.4",
"mocha-junit-reporter": "^2.0.2",
"pinst": "^3.0.0",
"postcss": "^8.4.14",
"prettier": "^2.7.0",
"prettier-eslint": "^15.0.1",
"react": "^18.2.0",
"react-css-theme-switcher": "^0.3.0",
"react-dom": "^18.2.0",
"shx": "^0.3.4",
"ts-node": "^10.8.1",
"ts-patch": "^2.0.1",
"tsconfig-paths": "^4.0.0",
"tsup": "^6.1.2",
"typedoc": "^0.22.17",
"typedoc-plugin-markdown": "^3.12.1",
"typescript": "^4.7.3",
"typescript-transform-paths": "^3.3.1"
},
"keywords": [
"blockchain",
"ethereum",
"react",
"create-eth-app",
"typescript"
],
"license": "MIT",
"packageManager": "[email protected]",
"volta": {
"node": "16.13.1"
},
"lint-staged": {
"**/*.{ts,tsx,js,jsx}": [
"yarn lint --fix",
"yarn format"
],
"**/*.{json,sol}": [
"yarn format"
]
}
}