-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
36 lines (36 loc) · 1.07 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
{
"name": "repay-protocol",
"version": "1.0.0",
"main": "hardhat.config.js",
"author": "hack3r-0m <[email protected]>",
"license": "MIT",
"scripts": {
"prettier": "prettier --write .",
"solhint": "solhint 'contracts/**/*.sol'",
"compile": "hardhat compile",
"deploy": "hardhat deploy",
"verify": "hardhat verify",
"whitelist-protocols": "hardhat whitelist-protocols",
"transfer-ownership": "hardhat transfer-ownership",
"create-uniswap-proxy": "hardhat create-uniswap-proxy"
},
"dependencies": {
"@aave/protocol-v2": "^1.0.1",
"@opengsn/contracts": "^2.2.2",
"@uniswap/v2-core": "^1.0.1",
"@uniswap/v2-periphery": "^1.1.0-beta.0",
"@uniswap/v3-core": "^1.0.0",
"@uniswap/v3-periphery": "^1.1.0",
"ethers": "^5.4.0"
},
"devDependencies": {
"@graphprotocol/graph-ts": "^0.20.1",
"@nomiclabs/hardhat-ethers": "^2.0.2",
"@nomiclabs/hardhat-etherscan": "^2.1.3",
"dotenv": "^10.0.0",
"hardhat": "^2.4.1",
"hardhat-deploy": "^0.8.9",
"prettier": "^2.3.2",
"solhint": "^3.3.6"
}
}