forked from flashbots/simple-arbitrage
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
36 lines (36 loc) · 956 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
{
"name": "@flashbots/simple-arbitrage",
"version": "0.0.1",
"description": "",
"main": "build/index.js",
"types": "build/index.d.ts",
"scripts": {
"start": "npx ts-node --project tsconfig.json src/index.ts",
"test": "npx ts-node node_modules/jasmine/bin/jasmine --config=jasmine.json",
"build": "npx tsc",
"prepare": "npm run build",
"lint": "npx eslint src"
},
"author": "",
"license": "ISC",
"devDependencies": {
"@types/jasmine": "^3.6.2",
"@types/lodash": "^4.14.165",
"@types/node": "^14.14.10",
"@typescript-eslint/eslint-plugin": "^4.9.1",
"@typescript-eslint/parser": "^4.9.1",
"eslint": "^7.15.0",
"ethers": "^5.0.23",
"jasmine": "^3.6.3",
"nyc": "^15.1.0"
},
"peerDependencies": {
"ethers": "^5.0.23"
},
"dependencies": {
"@flashbots/ethers-provider-bundle": "^0.3.1",
"lodash": "^4.17.21",
"ts-node": "^9.1.0",
"typescript": "^4.1.2"
}
}