-
Notifications
You must be signed in to change notification settings - Fork 41
/
package.json
48 lines (48 loc) · 1.27 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
{
"name": "mev-relay",
"version": "3.0.0",
"description": "A relay for sending flashbots bundle to multiple miners",
"scripts": {
"start": "node server/main.js",
"miner": "node miner/proxy.js",
"lint": "eslint .",
"miner-proxy": "node miner/proxy.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/flashbots/mev-relay.git"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/flashbots/mev-relay/issues"
},
"engines": {
"node": ">=10"
},
"homepage": "https://github.com/flashbots/mev-relay#readme",
"dependencies": {
"@ethereumjs/tx": "3.1.4",
"@sentry/node": "^5.29.2",
"aws-sdk": "^2.936.0",
"body-parser": "^1.19.0",
"ethers": "5.4.0",
"express": "^4.17.1",
"express-prom-bundle": "^6.3.1",
"express-rate-limit": "^5.2.3",
"lodash": "^4.17.21",
"morgan": "^1.10.0",
"node-fetch": "^2.6.1",
"prom-client": "^13.0.0",
"request": "^2.88.2"
},
"devDependencies": {
"eslint": "^7.13.0",
"eslint-config-prettier": "^6.15.0",
"eslint-config-standard": "^16.0.1",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-promise": "^4.2.1",
"prettier": "^2.1.2"
}
}