-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.21 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.21 KB
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
{
"name": "flashloan-arbitrage-bot",
"version": "1.0.0",
"description": "Flashloan Arbitrage Bot using Hardhat and The Graph",
"main": "index.js",
"scripts": {
"test": "hardhat test",
"compile": "hardhat compile",
"deploy": "hardhat run scripts/deploy.js --network mumbai",
"node": "hardhat node",
"clean": "hardhat clean",
"coverage": "hardhat coverage",
"lint": "solhint 'contracts/**/*.sol'",
"lint:fix": "solhint 'contracts/**/*.sol' --fix"
},
"keywords": [
"ethereum",
"flashloan",
"arbitrage",
"defi",
"hardhat"
],
"author": "",
"license": "MIT",
"devDependencies": {
"@graphprotocol/graph-cli": "^0.60.0",
"@graphprotocol/graph-ts": "^0.31.0",
"@nomicfoundation/hardhat-toolbox": "^2.0.2",
"@nomiclabs/hardhat-ethers": "^2.2.3",
"@nomiclabs/hardhat-waffle": "^2.0.6",
"@openzeppelin/contracts": "^4.9.6",
"chai": "^4.3.7",
"ethereum-waffle": "^4.0.10",
"ethers": "^5.7.2",
"hardhat": "^2.17.3",
"solhint": "^3.4.1",
"solidity-coverage": "^0.8.2"
},
"dependencies": {
"@aave/core-v3": "^1.17.2",
"@uniswap/v2-core": "^1.0.1",
"@uniswap/v2-periphery": "^1.1.0-beta.0",
"dotenv": "^16.3.1"
}
}