forked from huyiya/pancake-trading-bot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 999 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
38
{
"name": "pancakeswap-trading-bot",
"version": "1.0.0",
"description": "A simple mempool sniper bot 🤖",
"main": "index.js",
"scripts": {
"start": "ts-node index.ts",
"pm2": "pm2 start run.sh --watch -n trading-bot && pm2 logs trading-bot --lines 1000",
"logs": "pm2 logs trading-bot --lines 1000"
},
"repository": {
"type": "git",
"url": "git+https://github.com/CaoHuy26/pancakeswap-trading-bot.git"
},
"keywords": [
"pancakeswap",
"mempool",
"bot",
"ido"
],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/CaoHuy26/pancakeswap-trading-bot/issues"
},
"homepage": "https://github.com/CaoHuy26/pancakeswap-trading-bot#readme",
"dependencies": {
"@types/web3": "^1.2.2",
"abi-decoder": "^2.4.0",
"bignumber.js": "^9.0.1",
"dotenv": "^10.0.0",
"ethereum-input-data-decoder": "^0.3.5",
"pm2": "^5.1.1",
"typescript": "^4.4.3",
"web3": "^1.5.2",
"winston": "^3.3.3"
}
}