generated from yuichiroaoki/typescript-hardhat
-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
50 lines (50 loc) · 1.58 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
{
"name": "typescript-hardhat",
"version": "1.0.0",
"main": "index.js",
"repository": "https://github.com/yuichiroaoki/typescript-hardhat",
"author": "yuichiroaoki",
"license": "MIT",
"scripts": {
"build": "yarn clean && yarn compile",
"clean": "npx hardhat clean",
"compile": "npx hardhat compile",
"attack": "npx hardhat run scripts/attack.ts",
"balance": "npx hardhat balance --account",
"block-number": "npx hardhat block-number",
"deploy": "npx hardhat run scripts/deploy.ts",
"test": "npx hardhat test",
"coverage": "npx hardhat coverage",
"account": "npx hardhat accounts",
"postinstall": "husky install"
},
"private": true,
"devDependencies": {
"@nomiclabs/hardhat-ethers": "^2.1.0",
"@nomiclabs/hardhat-etherscan": "^3.1.0",
"@nomiclabs/hardhat-waffle": "^2.0.3",
"@openzeppelin/contracts": "^4.7.1",
"@openzeppelin/contracts-upgradeable": "^4.6.0",
"@openzeppelin/hardhat-upgrades": "^1.18.1",
"@typechain/ethers-v5": "^10.1.0",
"@typechain/hardhat": "^6.1.2",
"@types/chai": "^4.3.1",
"@types/mocha": "^9.1.1",
"@types/node": "^17.0.41",
"@uniswap/v3-periphery": "^1.4.1",
"chai": "^4.3.6",
"dotenv": "^16.0.1",
"ethereum-waffle": "^3.4.4",
"hardhat": "^2.10.1",
"husky": "^8.0.1",
"lint-staged": "^13.0.1",
"prettier": "^2.6.2",
"prettier-plugin-solidity": "^1.0.0-beta.19",
"solidity-coverage": "^0.7.21",
"ts-generator": "^0.1.1",
"ts-node": "^10.8.1",
"typechain": "^8.1.0",
"typescript": "^4.7.3"
},
"packageManager": "[email protected]"
}