forked from flashbots/searcher-minter
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
65 lines (65 loc) · 2.14 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
60
61
62
63
64
65
{
"name": "yobot-searcher",
"version": "1.2.0",
"description": "Yobot Searcher is a Typescript server that posts flashbot bundles for executing [Yobot](https://yobot.co) bids.",
"authors": [
"Andreas Bigger <andreas@nascent.xyz>"
],
"main": "index.ts",
"exports": "./src",
"scripts": {
"lint": "eslint src/**.ts",
"lint:fix": "eslint src/**.ts --fix && yarn format",
"type-check": "tsc --noEmit",
"format": "prettier --write src",
"up-latest": "yarn upgrade-interactive --latest",
"release": "standard-version",
"push-release": "git push --follow-tags origin main",
"prepare": "husky install",
"test": "jest",
"start": "npx ts-node src/index.ts",
"scripts:mint": "npx ts-node scripts/mint.ts",
"scripts:orders": "npx ts-node scripts/orders.ts",
"scripts:run": "npx ts-node scripts/run.ts",
"scripts:simulate": "npx ts-node scripts/simulate.ts",
"scripts:balance": "npx ts-node scripts/balance.ts",
"scripts:fill": "npx ts-node scripts/fill.ts",
"scripts:tokens": "npx ts-node scripts/tokens.ts",
"scripts:approve": "npx ts-node scripts/approve.ts",
"scripts:mempool": "npx ts-node scripts/mempool.ts"
},
"license": "Unlicense",
"dependencies": {
"@ethersproject/providers": "^5.5.1",
"@flashbots/ethers-provider-bundle": "0.4.1",
"bignumber.js": "^9.0.2",
"bn.js": "^5.2.0",
"bnc-sdk": "^3.7.0",
"cross-fetch": "^3.1.4",
"dotenv": "^10.0.0",
"ethers": "5.4.5",
"ws": "^8.4.0"
},
"devDependencies": {
"@types/bn.js": "^5.1.0",
"@types/jest": "^27.4.0",
"@types/node": "^16.7.2",
"@types/ws": "^8.2.2",
"@typescript-eslint/eslint-plugin": "^5.9.0",
"@typescript-eslint/parser": "^5.9.0",
"commitlint": "^16.0.1",
"eslint": "^8.6.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-airbnb-typescript": "^16.1.0",
"eslint-import-resolver-node": "^0.3.6",
"eslint-plugin-import": "^2.25.4",
"husky": "^7.0.4",
"jest": "^27.4.7",
"lint-staged": "^12.1.5",
"prettier": "^2.5.1",
"ts-jest": "^27.1.2",
"ts-node": "^10.2.1",
"tslib": "^2.3.1",
"typescript": "^4.3.5"
}
}