-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
118 lines (118 loc) · 3.93 KB
/
package.json
File metadata and controls
118 lines (118 loc) · 3.93 KB
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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
{
"name": "bsc-market-maker-bot",
"version": "0.1.0",
"description": "BSC (BNB Chain) Market Maker Bot with batch wallet management and DEX trading",
"main": "dist/index.js",
"bin": {
"bsc-bot": "dist/cli/index.js"
},
"scripts": {
"build": "tsc",
"dev": "tsx src/cli/index.ts",
"start": "node dist/cli/index.js",
"server": "node dist/server.js",
"server:dev": "PORT=10001 node ./scripts/start-server.js",
"server:minimal": "PORT=10001 npx tsx src/server-minimal.ts",
"server:core": "PORT=10001 npx tsx src/core-server.ts",
"migrate": "node -e \"require('./dist/persistence/database').database.init()\"",
"monitor": "npx tsx src/monitoring/monitor.ts",
"test": "npx tsx tests/test-runner.ts",
"test:integration": "vitest run tests/integration",
"test:integration:watch": "vitest watch tests/integration/full-integration.test.ts",
"test:all": "vitest run",
"test:unit": "vitest run tests/core",
"test:api": "vitest run tests/api",
"test:frontend": "vitest run tests/frontend",
"test:e2e": "vitest run tests/e2e",
"test:watch": "vitest",
"test:ui": "vitest --ui",
"test:coverage": "vitest run --coverage",
"lint": "eslint src --ext .ts,.tsx",
"lint:fix": "eslint src --ext .ts,.tsx --fix",
"format": "prettier --write \"src/**/*.{ts,tsx,json}\"",
"typecheck": "tsc --noEmit",
"clean": "rm -rf dist",
"deploy:pm2": "./scripts/deploy-production.sh --method=pm2",
"deploy:systemd": "./scripts/deploy-production.sh --method=systemd",
"deploy:quick": "./scripts/deploy-production.sh --method=pm2 --skip-migrate",
"test:smoke": "vitest run tests/smoke",
"start:bot": "ENABLE_BIANDEX=false ENABLE_TRADING_BOT=true node dist/server.js",
"start:dex": "ENABLE_BIANDEX=true ENABLE_TRADING_BOT=false node dist/server.js",
"start:full": "ENABLE_BIANDEX=true ENABLE_TRADING_BOT=true node dist/server.js",
"dev:bot": "ENABLE_BIANDEX=false ENABLE_TRADING_BOT=true PORT=10001 npx tsx src/server.ts",
"dev:dex": "ENABLE_BIANDEX=true ENABLE_TRADING_BOT=false PORT=10003 npx tsx src/server.ts"
},
"keywords": [
"bsc",
"bnb-chain",
"market-maker",
"dex",
"pancakeswap",
"trading-bot",
"defi"
],
"author": "",
"license": "MIT",
"devDependencies": {
"@nomicfoundation/hardhat-toolbox": "^6.1.0",
"@openzeppelin/contracts": "^5.4.0",
"@types/js-yaml": "^4.0.9",
"@types/node": "^24.5.2",
"@types/node-fetch": "^2.6.13",
"@types/sinon": "^17.0.4",
"@types/supertest": "^6.0.3",
"@typescript-eslint/eslint-plugin": "^8.44.1",
"@typescript-eslint/parser": "^8.44.1",
"eslint": "^9.36.0",
"hardhat": "^3.0.6",
"prettier": "^3.6.2",
"sinon": "^21.0.0",
"supertest": "^7.1.4",
"tsx": "^4.20.5",
"typescript": "^5.9.2",
"vitest": "^3.2.4"
},
"dependencies": {
"@scure/bip32": "^2.0.0",
"@scure/bip39": "^2.0.0",
"@types/bcrypt": "^6.0.0",
"@types/compression": "^1.8.1",
"@types/cors": "^2.8.19",
"@types/express": "^5.0.3",
"@types/jsonwebtoken": "^9.0.10",
"@types/nodemailer": "^7.0.2",
"@types/uuid": "^10.0.0",
"@types/ws": "^8.18.1",
"bcrypt": "^6.0.0",
"commander": "^14.0.1",
"compression": "^1.8.1",
"cors": "^2.8.5",
"csv-parse": "^6.1.0",
"csv-stringify": "^6.6.0",
"dotenv": "^17.2.2",
"ethers": "^6.15.0",
"express": "^5.1.0",
"express-rate-limit": "^8.1.0",
"express-validator": "^7.2.1",
"helmet": "^8.1.0",
"http-proxy-middleware": "^3.0.5",
"joi": "^18.0.1",
"js-yaml": "^4.1.0",
"jsonwebtoken": "^9.0.2",
"knex": "^3.1.0",
"node-fetch": "^2.7.0",
"nodemailer": "^7.0.6",
"pino": "^9.11.0",
"pino-pretty": "^13.1.1",
"prom-client": "^15.1.3",
"sqlite3": "^5.1.7",
"toml": "^3.0.0",
"uuid": "^13.0.0",
"viem": "^2.37.8",
"winston-daily-rotate-file": "^5.0.0",
"ws": "^8.18.3"
},
"directories": {
"test": "tests"
}
}