forked from flashbots/mev-proxy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
37 lines (37 loc) · 952 Bytes
/
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": "mev-relay",
"version": "2.1.0",
"description": "A relay for sending flashbots bundle to multiple miners",
"scripts": {
"start": "node src/proxy.js",
"miner": "node src/proxy.js",
"lint": "eslint ."
},
"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": {
"express": "^4.17.1",
"lodash": "^4.17.20",
"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"
}
}