-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 1.56 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
{
"name": "mev-arb-bot",
"version": "1.0.0",
"description": "MEV bot script written in Node.js",
"main": "index.js",
"scripts": {
"test": "jest",
"format:check": "prettier --check .",
"format:write": "prettier --write .",
"lint:check": "eslint .",
"lint:fix": "eslint --fix ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/ondecentral/mev-arb-bot.git"
},
"keywords": [
"cyclic",
"triangular",
"cross",
"crypto",
"dex",
"flash",
"swap",
"flash",
"loan",
"mempool",
"mev"
],
"author": "Kentaro",
"license": "ISC",
"bugs": {
"url": "https://github.com/ondecentral/mev-arb-bot/issues"
},
"homepage": "https://github.com/ondecentral/mev-arb-bot#readme",
"dependencies": {
"@ethereumjs/common": "^4.1.0",
"@ethereumjs/evm": "^2.1.0",
"@ethereumjs/statemanager": "^2.1.0",
"@ethereumjs/tx": "^5.1.0",
"@ethereumjs/util": "^9.0.1",
"@ethereumjs/vm": "^7.1.0",
"@flashbots/ethers-provider-bundle": "^0.6.2",
"archiver": "^6.0.1",
"axios": "^1.4.0",
"cli-progress": "^3.12.0",
"dotenv": "^16.3.1",
"ethers": "^5.7.2",
"fs": "^0.0.1-security",
"jest": "^29.7.0",
"uuid": "^9.0.0",
"winston": "^3.10.0"
},
"devDependencies": {
"eslint": "^8.54.0",
"eslint-config-prettier": "^9.0.0",
"prettier": "^3.1.0"
}
}