-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 1.28 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
{
"name": "hodler-vault",
"version": "0.1.0",
"description": "Set of contract that automates the strategy of holding crypto, at the same time investing borrowed stablecoins, with insurance-based liquidation protection",
"scripts": {
"prettier": "prettier --write 'contracts/**/*.sol'",
"solhint": "solhint 'contracts/**/*.sol'"
},
"author": "",
"license": "Apache-2.0",
"devDependencies": {
"@nomiclabs/hardhat-ethers": "^2.0.5",
"@nomiclabs/hardhat-etherscan": "^3.0.3",
"@nomiclabs/hardhat-waffle": "^2.0.3",
"@openzeppelin/hardhat-upgrades": "^1.17.0",
"chai": "^4.3.6",
"ethereum-waffle": "^3.4.4",
"ethers": "^5.5.4",
"hardhat": "^2.9.5",
"hardhat-contract-sizer": "^2.5.1",
"hardhat-dependency-compiler": "^1.1.2",
"hardhat-gas-reporter": "^1.0.8",
"prettier": "^2.6.2",
"prettier-plugin-solidity": "^1.0.0-beta.19",
"solhint": "^3.3.7",
"solhint-plugin-prettier": "0.0.5",
"solidity-coverage": "^0.7.21"
},
"dependencies": {
"@aave/protocol-v2": "https://github.com/gnarvaja/protocol-v2.git",
"@ensuro/core": "^1.2.6",
"@openzeppelin/contracts": "^4.5.0",
"@openzeppelin/contracts-upgradeable": "^4.5.2",
"@rari-capital/solmate": "^6.3.0",
"@uniswap/v2-periphery": "^1.1.0-beta.0"
}
}