-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
147 lines (147 loc) · 5.62 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
{
"name": "eth-contract-warehouse",
"version": "0.0.3-beta02",
"description": "Ethers and typechain compatable types for common contracts",
"author": "Shravan Sunder <[email protected]>",
"repository": "https://github.com/austintgriffith/eth-hooks.git",
"main": "index.js",
"module": "index.js",
"types": "index.d.ts",
"engines": {
"node": ">=12",
"npm": ">=6"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"contributors": [
{
"name": "Austin Griffith",
"url": "https://github.com/austintgriffith"
},
{
"name": "Shravan Sunder",
"url": "https://github.com/ShravanSunder"
}
],
"scripts": {
"chain": "hardhat node --network hardhat --no-deploy",
"fork": "hardhat node --fork https://mainnet.infura.io/v3/460f40a260564ac4a4f4b3fffb032dad",
"test": "hardhat test --network hardhat",
"compile": "hardhat compile",
"deploy": "hardhat deploy --export-all ../vite-app-ts/src/generated/contracts/hardhat_contracts.json",
"export": "hardhat export --export-all ../vite-app-ts/src/generated/contracts/hardhat_contracts.json",
"postdeploy": "hardhat run scripts/publish.ts",
"accounts": "hardhat accounts",
"balance": "hardhat balance",
"send": "hardhat send",
"generate": "hardhat generate",
"account": "hardhat account",
"etherscan-verify": "hardhat etherscan-verify --api-key PSW8C433Q667DVEX5BCRMGNAH9FSGFZ7Q8",
"watch": "ts-patch i && tsc -w --noEmit",
"clean": "shx rm -rf ./lib",
"build": "yarn clean && node esbuild.config.js && tsc -p tsconfig.build.json",
"package": "shx cp -R package.json ./lib && shx cp -R README.md ./lib",
"publish:pre": "yarn clean && yarn compile --force && yarn build && yarn package",
"publish:yalc": "yarn build && yarn package && cd lib && yalc publish --no-script --push",
"publish:next": "yarn build && yarn package && cd lib && npm publish --tag next",
"publish:latest": "yarn build && yarn package && cd lib && npm publish --tag latest",
"docs": "yarn typedoc --listInvalidSymbolLinks && shx mv ./docs/api-typedocs/readme.md ./docs/api-typedocs/api-overview.md",
"deprecate": "npm deprecate",
"lint": "eslint --config ./.eslintrc --ignore-path ./.eslintignore ./src/**/*",
"test:hardhat": "yarn hh:run test --network hardhat",
"test:mocha": "yarn hh:env yarn mocha --config .mocharc.js",
"hh:run": "yarn hh:env yarn hardhat",
"hh:chain": "yarn hh:run node",
"hh:env": "cross-env TS_NODE_PROJECT=tsconfig.testing.json TS_NODE_TRANSPILE_ONLY=1"
},
"devDependencies": {
"@atixlabs/hardhat-time-n-mine": "^0.0.5",
"@ethersproject/address": "^5.4.0",
"@ethersproject/bignumber": "^5.4.0",
"@ethersproject/bytes": "^5.4.0",
"@ethersproject/contracts": "^5.4.0",
"@ethersproject/networks": "^5.4.0",
"@ethersproject/providers": "^5.4.0",
"@ethersproject/signing-key": "^5.4.0",
"@ethersproject/solidity": "^5.4.0",
"@ethersproject/units": "^5.4.0",
"@nomiclabs/hardhat-ethers": "npm:hardhat-deploy-ethers@^0.3.0-beta.10",
"@nomiclabs/hardhat-waffle": "^2.0.1",
"@openzeppelin/contracts": "^4.1.0",
"@tenderly/hardhat-tenderly": "^1.0.10",
"@testing-library/dom": "^8.9.1",
"@testing-library/react": "^12.1.2",
"@testing-library/react-hooks": "^7.0.1",
"@testing-library/user-event": "^13.4.1",
"@typechain/ethers-v5": "^7.0.1",
"@typechain/hardhat": "^2.0.2",
"@types/chai": "^4.2.22",
"@types/mocha": "^9.0.0",
"@types/node": "^16.11.1",
"@types/pretty-time": "^1.1.0",
"@types/qrcode.react": "^1.0.1",
"@types/react": "^17.0.30",
"@types/react-blockies": "^1.4.0",
"@types/react-dom": "^17.0.8",
"@typescript-eslint/eslint-plugin": "^4.31.2",
"@typescript-eslint/parser": "^4.31.2",
"@uniswap/sdk": "^3.0.3",
"chai": "^4.3.4",
"cross-env": "^7.0.3",
"esbuild": "^0.13.8",
"esbuild-node-externals": "^1.3.0",
"eslint": "^7.30.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-config-airbnb-typescript": "^14.0.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-jest": "^24.4.2",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-mocha": "^9.0.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.26.0",
"eslint-plugin-react-hooks": "^4.2.0",
"eslint-plugin-testing-library": "^4.12.3",
"eslint-plugin-unused-imports": "^1.1.2",
"ethereum-waffle": "^3.4.0",
"ethers": "^5.4.1",
"global-jsdom": "^8.3.0",
"hardhat": "^2.6.6",
"hardhat-gas-reporter": "^1.0.4",
"husky": "^7.0.0",
"jsdom": "^18.0.0",
"lint-staged": "^11.1.2",
"mocha": "^9.1.3",
"mocha-github-actions-reporter": "^0.2.4",
"mocha-junit-reporter": "^2.0.2",
"node-watch": "^0.7.1",
"prettier": "^2.4.1",
"prettier-eslint": "^13.0.0",
"prettier-plugin-solidity": "^1.0.0-beta.13",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"rlp": "^2.2.7",
"shx": "^0.3.3",
"sinon": "^11.1.2",
"sinon-chai": "^3.7.0",
"solidity-coverage": "^0.7.17",
"ts-node": "^10.3.0",
"ts-patch": "^1.3.4",
"ts-sinon": "^2.0.2",
"tsconfig-paths": "^3.11.0",
"typechain": "^5.1.1",
"typedoc": "^0.22.6",
"typedoc-plugin-markdown": "^3.11.3",
"typescript": "^4.4.4",
"typescript-transform-paths": "^3.0.2"
},
"keywords": [
"blockchain",
"ethereum",
"react",
"create-eth-app",
"typescript"
],
"packageManager": "[email protected]"
}