-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
51 lines (51 loc) · 1.58 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
{
"name": "tinyhunter-flashbots-ctf",
"version": "1.0.0",
"description": "A tiny framework to solve all the Flashbots CTF challenges",
"main": "index.js",
"scripts": {
"build": "rimraf ./build && tsc",
"ctf:simple": "ts-node src/ctf-simple.ts",
"ctf:magic-v1": "ts-node src/ctf-magic-v1.ts",
"ctf:magic-v2": "ts-node src/ctf-magic-v2.ts",
"ctf:magic-v3": "ts-node src/ctf-magic-v3.ts",
"ctf:new-contract": "ts-node src/ctf-new-contract.ts",
"ctf:triple": "ts-node src/ctf-triple.ts",
"listener": "ts-node src/listener.ts",
"lint": "eslint . --ext .ts",
"prettier-format": "prettier --config .prettierrc 'src/**/*.ts' --write",
"prettier-watch": "onchange 'src/**/*.ts' -- prettier --write {{changed}}",
"test": "jest",
"test:dev": "jest --watchAll"
},
"husky": {
"hooks": {
"pre-commit": "npm run test && npm run prettier-format && npm run lint"
}
},
"keywords": [],
"author": "Phureewat A",
"license": "MIT",
"devDependencies": {
"@types/jest": "^29.5.3",
"@types/node": "^18.6.1",
"@typescript-eslint/eslint-plugin": "^5.31.0",
"@typescript-eslint/parser": "^5.31.0",
"eslint": "^8.20.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-jest": "^26.6.0",
"eslint-plugin-prettier": "^4.2.1",
"husky": "^8.0.1",
"jest": "^29.6.2",
"prettier": "^2.7.1",
"rimraf": "^3.0.2",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1",
"typescript": "^4.7.4"
},
"dependencies": {
"@flashbots/mev-share-client": "^0.7.6",
"dotenv": "^16.3.1",
"ethers": "^6.6.7"
}
}