-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
84 lines (84 loc) · 2.59 KB
/
package.json
File metadata and controls
84 lines (84 loc) · 2.59 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
{
"name": "mev-arbitrage-bot",
"version": "1.0.0",
"description": "Enterprise-scale MEV arbitrage bot with microservices architecture",
"main": "dist/index.js",
"scripts": {
"build": "tsc",
"start": "node dist/index.js",
"dev": "tsx watch src/index.ts",
"start:all": "concurrently \"npm run start:mempool-monitor\" \"npm run start:arbitrage-engine\" \"npm run start:mev-execution\" \"npm run start:monitoring\"",
"start:mempool-monitor": "tsx src/services/mempool-monitor/index.ts",
"start:arbitrage-engine": "tsx src/services/arbitrage-engine/index.ts",
"start:mev-execution": "tsx src/services/mev-execution/index.ts",
"start:monitoring": "tsx src/services/monitoring/index.ts",
"test": "jest",
"test:integration": "jest --config jest.integration.config.js",
"test:load": "artillery run tests/load-test.yml",
"test:contracts": "hardhat test",
"deploy:testnet": "hardhat run scripts/deploy.ts --network goerli",
"deploy:mainnet": "hardhat run scripts/deploy.ts --network mainnet",
"lint": "eslint src/**/*.ts",
"lint:fix": "eslint src/**/*.ts --fix",
"format": "prettier --write src/**/*.ts",
"docker:build": "docker-compose build",
"docker:up": "docker-compose up -d",
"docker:down": "docker-compose down",
"docker:logs": "docker-compose logs -f"
},
"keywords": [
"mev",
"arbitrage",
"defi",
"flashbots",
"ethereum",
"microservices",
"enterprise",
"scalable"
],
"author": "Elvis Osuji",
"license": "MIT",
"dependencies": {
"alchemy-sdk": "^3.0.0",
"axios": "^1.6.0",
"big.js": "^6.2.1",
"bullmq": "^4.15.0",
"compression": "^1.7.4",
"cors": "^2.8.5",
"decimal.js": "^10.4.3",
"dotenv": "^16.3.1",
"ethers": "^6.8.0",
"express": "^4.18.2",
"helmet": "^7.1.0",
"ioredis": "^5.3.2",
"lodash": "^4.17.21",
"socket.io": "^4.7.4",
"winston": "^3.11.0",
"ws": "^8.14.2",
"zod": "^3.22.4"
},
"devDependencies": {
"@nomicfoundation/hardhat-toolbox": "^3.0.0",
"@types/compression": "^1.8.1",
"@types/express": "^4.17.20",
"@types/jest": "^29.5.6",
"@types/lodash": "^4.14.200",
"@types/node": "^20.8.0",
"@types/ws": "^8.5.8",
"@typescript-eslint/eslint-plugin": "^6.9.0",
"@typescript-eslint/parser": "^6.9.0",
"artillery": "^2.0.0",
"concurrently": "^8.2.2",
"eslint": "^8.52.0",
"hardhat": "^2.17.0",
"jest": "^29.7.0",
"prettier": "^3.0.3",
"ts-jest": "^29.1.1",
"tsx": "^4.1.0",
"typescript": "^5.2.2"
},
"engines": {
"node": ">=18.0.0",
"npm": ">=8.0.0"
}
}