-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
50 lines (50 loc) · 1.53 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
{
"name": "piggyback",
"version": "0.1.0",
"description": "🦄 🤖 A replica implementation of an MEV honeypot bot I caught out in the wild.",
"main": "dist",
"repository": "https://github.com/cawfree/piggyback",
"author": "cawfree <[email protected]>",
"license": "CC0-1.0",
"private": false,
"scripts": {
"balance": "npx ts-node scripts/balance",
"start": "npx ts-node scripts/start",
"etherscan": "NODE_ENV=test npx ts-node scripts/etherscan",
"piggyback": "NODE_ENV=test npx ts-node scripts/piggyback",
"fork": "NODE_ENV=test npx ts-node scripts/fork",
"art": "NODE_ENV=test npx ts-node scripts/art",
"test": "NODE_ENV=test jest"
},
"devDependencies": {
"@babel/core": "7.23.2",
"@babel/plugin-transform-react-jsx": "7.22.15",
"@babel/preset-env": "7.23.2",
"@babel/preset-typescript": "7.23.2",
"@ethersproject/bytes": "5.7.0",
"@jest/globals": "29.7.0",
"@types/ink-text-input": "2.0.3",
"@types/jest": "29.5.5",
"@types/node": "20.8.6",
"@types/prompts": "2.4.6",
"@types/react": "18.2.28",
"axios": "1.5.1",
"babel-jest": "29.7.0",
"bignumber.js": "9.1.2",
"dotenv": "16.3.1",
"ethers": "6.8.0",
"expression-eval": "5.0.1",
"ink": "2.7.1",
"ink-text-input": "3.3.0",
"jest": "29.7.0",
"nanoid": "3.3.4",
"node-html-parser": "6.1.10",
"prompts": "2.4.2",
"react": "18.2.0",
"ts-jest": "29.1.1",
"ts-node": "10.9.1",
"typescript": "5.2.2",
"use-debounce": "9.0.4",
"winston": "3.8.1"
}
}