-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
52 lines (52 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
{
"scripts": {
"deploy:core": "hardhat deploy --tags core",
"deploy:reserve:dai": "hardhat deploy --tags dai_reserve",
"deploy:reserve:usdt": "hardhat deploy --tags usdt_reserve",
"deploy:reserve:busd": "hardhat deploy --tags busd_reserve",
"test": "yarn hardhat test",
"test:zap": "yarn hardhat test --no-compile",
"task": "yarn hardhat --config hardhat.config.tasks.ts",
"coverage": "yarn hardhat coverage --testfiles 'test/contracts/**/*.test.ts' --solcoverjs ./.solcover.js",
"docgen": "yarn run solidity-docgen --solc-module solc-0.8.3 --templates ./templates"
},
"dependencies": {},
"devDependencies": {
"@cucumber/cucumber": "^7.1.0",
"@eth-optimism/smock": "^1.1.0",
"@nomiclabs/ethereumjs-vm": "^4.2.2",
"@nomiclabs/hardhat-ethers": "^2.0.2",
"@nomiclabs/hardhat-etherscan": "^2.1.1",
"@nomiclabs/hardhat-solhint": "^2.0.0",
"@nomiclabs/hardhat-waffle": "^2.0.1",
"@openzeppelin/contracts": "^4.0.0",
"@openzeppelin/contracts-upgradeable": "^4.0.0",
"@openzeppelin/hardhat-upgrades": "^1.6.0",
"@typechain/ethers-v5": "^7.0.1",
"@typechain/hardhat": "^2.3.0",
"@types/chai": "^4.2.17",
"@types/mocha": "^8.2.2",
"@types/node": "^15.0.1",
"bignumber.js": "^9.0.1",
"chai": "^4.3.4",
"dotenv": "^8.2.0",
"ethereum-waffle": "^3.3.0",
"ethers": "^5.3.0",
"hardhat": "^2.9.7",
"hardhat-deploy": "^0.7.10",
"hardhat-deploy-ethers": "^0.3.0-beta.8",
"hardhat-gas-reporter": "^1.0.4",
"hardhat-typechain": "^0.3.5",
"mocha": "^8.3.2",
"solc-0.8.3": "npm:[email protected]",
"solidity-coverage": "donguks/solidity-coverage",
"solidity-docgen": "^0.5.13",
"ts-generator": "^0.1.1",
"ts-node": "^9.1.1",
"typechain": "^5.1.2",
"typescript": "^4.2.4"
},
"resolutions": {
"@solidity-parser/parser": "^0.13.2"
}
}