-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathpackage.json
67 lines (67 loc) · 2.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
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
{
"name": "flashloan-aggregator",
"version": "1.0.0",
"description": "Flashloan aggregator on all major chains.",
"main": "dist/index",
"scripts": {
"compile": "hardhat compile",
"test": "hardhat run scripts/global-tests.ts",
"test:runner": "hardhat run scripts/run-tests.ts",
"typechain": "hardhat typechain"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Instadapp/flashloan-aggregator.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/Instadapp/flashloan-aggregator/issues"
},
"homepage": "https://github.com/Instadapp/flashloan-aggregator#readme",
"dependencies": {
"@chainlink/contracts": "^0.2.2",
"@eth-optimism/contracts": "^0.5.16",
"@nomiclabs/hardhat-web3": "^2.0.0",
"@openzeppelin/contracts": "^4.4.0",
"@openzeppelin/contracts-upgradeable": "^4.3.2",
"@openzeppelin/upgrades": "^2.8.0",
"@typechain/ethers-v5": "^10.2.1",
"@typechain/hardhat": "^6.1.6",
"@uniswap/v3-core": "^1.0.1",
"@uniswap/v3-periphery": "^1.4.0",
"chai": "^4.3.4",
"dotenv": "^10.0.0",
"ethereum-waffle": "^3.4.0",
"ethereumjs-abi": "^0.6.8",
"ethers": "^5.4.7",
"hardhat-contract-sizer": "^2.10.0",
"hardhat-deploy": "^0.9.1",
"hardhat-deploy-ethers": "^0.3.0-beta.10",
"inquirer": "^8.2.0",
"replace-in-file": "^6.2.0",
"solc": "^0.6.12"
},
"devDependencies": {
"@nomicfoundation/hardhat-chai-matchers": "^1.0.0",
"@nomicfoundation/hardhat-network-helpers": "^1.0.8",
"@nomicfoundation/hardhat-toolbox": "^2.0.0",
"@nomiclabs/hardhat-ethers": "^2.0.2",
"@nomiclabs/hardhat-etherscan": "^3.1.7",
"@openzeppelin/hardhat-upgrades": "^1.12.0",
"@openzeppelin/test-helpers": "^0.5.13",
"@tenderly/hardhat-tenderly": "^1.0.12",
"@types/chai": "^4.2.0",
"@types/dotenv": "^8.2.0",
"@types/fs-extra": "^9.0.13",
"@types/inquirer": "^8.1.3",
"@types/mocha": "^9.0.0",
"hardhat": "^2.6.7",
"hardhat-gas-reporter": "^1.0.4",
"prettier": "^3.2.5",
"prettier-plugin-solidity": "^1.3.1",
"solidity-coverage": "^0.8.0",
"ts-node": "^10.4.0",
"typescript": "^5.2.2"
}
}