-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
35 lines (35 loc) · 1.16 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
{
"name": "hardhat-project",
"scripts": {
"compile": "npx hardhat compile",
"watch": "npx hardhat watch compilation",
"test": "npx hardhat test",
"coverage": "npx hardhat coverage",
"clean": "rm -rf ./artifacts && rm -rf ./typechain",
"fork": "npx hardhat node --fork https://mainnet.infura.io/v3/ffa6c1dc83e44e6c9971d4706311d5ab",
"fork:bsc": "npx hardhat node --fork https://bsc-dataseed.binance.org/",
"typechain": "typechain --target ethers-v5 --outDir typechain './artifacts/**/*.json'"
},
"devDependencies": {
"@nomiclabs/hardhat-ethers": "^2.0.1",
"@nomiclabs/hardhat-waffle": "^2.0.1",
"@types/mocha": "^8.2.0",
"chai": "^4.2.0",
"dotenv": "^8.2.0",
"ethereum-waffle": "^3.2.2",
"ethers": "^5.0.26",
"hardhat": "^2.0.8",
"hardhat-gas-reporter": "^1.0.4",
"solidity-coverage": "^0.7.15",
"ts-node": "^9.1.1",
"typescript": "^4.1.3"
},
"dependencies": {
"@nomiclabs/hardhat-etherscan": "^2.1.1",
"@openzeppelin/contracts": "^4.0.0-beta.0",
"@typechain/ethers-v5": "^5.0.0",
"hardhat-typechain": "^0.3.4",
"hardhat-watcher": "^2.1.1",
"typechain": "^4.0.1"
}
}