-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
37 lines (37 loc) · 1.1 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": "hardhat",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"t": "npx hardhat run projects/triangle-arbitrage/main.ts",
"bot": "npx hardhat run src/main.ts",
"swap": "npx hardhat swap",
"test": "npx hardhat test",
"gas": "export REPORT_GAS=true;npx hardhat test",
"coverage": "npx hardhat coverage",
"accounts": "npx hardhat accounts",
"verify": "npx hardhat verify",
"node": "npx hardhat node",
"deploy": "npx hardhat run scripts/deployArbitrage.ts",
"node:deploy:bot": "concurrently 'npx hardhat node' 'sleep 7 && npm run deploy' 'sleep 15 && npm run bot'"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@openzeppelin/contracts": "^4.4.1",
"@uniswap/sdk": "^3.0.3",
"@uniswap/v2-core": "^1.0.1",
"@uniswap/v2-periphery": "^1.1.0-beta.0",
"node-fetch": "^2.6.7"
},
"devDependencies": {
"@nomicfoundation/hardhat-toolbox": "^2.0.0",
"@types/node-fetch": "^2.6.2",
"chai": "^4.3.6",
"concurrently": "^7.5.0",
"dotenv": "^10.0.0",
"hardhat": "^2.12.2"
}
}