-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
38 lines (38 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
38
{
"name": "arb-bot",
"version": "1.0.0",
"description": "Trading bot that utilizes Solidity contracts, in conjunction with decentralized exchanges, to commit token arbitrage on any EVM compatible blockchain.",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/smarshall-spitzbart/arb-bot.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/smarshall-spitzbart/arb-bot/issues"
},
"homepage": "https://github.com/smarshall-spitzbart/arb-bot#readme",
"devDependencies": {
"@nomiclabs/hardhat-ethers": "^2.0.5",
"@nomiclabs/hardhat-waffle": "^2.0.2",
"chai": "^4.3.6",
"ethereum-waffle": "^3.4.0",
"ethers": "^5.5.4",
"hardhat": "^2.8.4"
},
"dependencies": {
"@openzeppelin/contracts": "^4.5.0",
"@uniswap/sdk": "^3.0.3",
"@uniswap/v2-core": "^1.0.1",
"@uniswap/v2-periphery": "^1.1.0-beta.0",
"big.js": "^6.1.1",
"cors": "^2.8.5",
"dotenv": "^16.0.0",
"express": "^4.17.3"
}
}