-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
70 lines (70 loc) · 2.56 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
{
"scripts": {
"compile5": "hardhat typechain --config hardhat.config.ts",
"compile6": "hardhat typechain --config hardhat.config.6.ts",
"compile": "hardhat typechain --config hardhat.config.ts && hardhat typechain --config hardhat.config.6.ts",
"test:mstable": "buidler test ./test/MStableBank.test.ts",
"test:sushi": "hardhat test ./test/SushiswapBank.test.ts",
"test:sushi12": "hardhat test ./test/SushiswapPool12Bank.test.ts",
"test:uni": "hardhat test ./test/UniswapBank.test.js",
"test:add": "hardhat test ./test/StrategyAddETHOnly.test.js",
"test:liquidate": "hardhat test ./test/StrategyLiquidate.test.js",
"test:minimize": "hardhat test ./test/StrategyWithdrawMinimizeTrading.test.js",
"test:twoside": "hardhat test ./test/StrategyAddTwoSidesOptimal.test.js",
"test:router": "hardhat test ./test/IbETHRouter.test.ts",
"test": "hardhat test",
"deploy:kovan": "truffle migrate --network kovan",
"deploy:bsctest": "truffle migrate --network bsctest",
"deploy:reset": "truffle migrate --network bsctest --reset",
"coverage": "solidity-coverage",
"ganache": "ganache-cli"
},
"dependencies": {
"@nomiclabs/hardhat-ethers": "^2.0.0",
"@nomiclabs/hardhat-etherscan": "^3.0.3",
"@nomiclabs/hardhat-waffle": "^2.0.3",
"@openzeppelin/contracts": "^4.5.0",
"@openzeppelin/test-helpers": "^0.5.6",
"@typechain/hardhat": "^6.0.0",
"@uniswap/v2-core": "^1.0.1",
"dotenv": "^16.0.0",
"ethereum-waffle": "^3.4.4",
"hardhat-gas-reporter": "^1.0.8",
"@openzeppelin": "^0.0.1-security",
"solidity-coverage": "^0.7.20",
"synthetix": "^2.28.4-beta",
"truffle": "^5.1.45",
"truffle-flattener": "^1.5.0",
"truffle-hdwallet-provider": "^1.0.17",
"truffle-plugin-verify": "^0.4.0"
},
"prettier": {
"printWidth": 120,
"singleQuote": true,
"tabWidth": 2,
"bracketSpacing": true
},
"devDependencies": {
"@nomiclabs/hardhat-truffle5": "^2.0.0",
"@nomiclabs/hardhat-web3": "^2.0.0",
"@typechain/truffle-v5": "^3.0.0",
"@types/chai": "^4.2.14",
"@types/mocha": "^8.0.3",
"@types/node": "^14.11.10",
"@types/web3": "^1.2.2",
"chai": "^4.3.6",
"chai-bignumber": "^3.0.0",
"ethereumjs-util": "^7.0.7",
"ethers": "^5.6.2",
"hardhat": "^2.9.2",
"hardhat-typechain": "^0.3.3",
"prettier": "^2.1.2",
"prettier-plugin-solidity": "^1.0.0-alpha.59",
"truffle-typings": "^1.0.8",
"ts-generator": "^0.1.1",
"ts-node": "^9.0.0",
"typechain": "^4.0.0",
"typescript": "^4.0.3",
"web3": "^1.3.0"
}
}