This commit is contained in:
talorr
2026-03-27 03:36:08 +03:00
parent 8a97ce6d54
commit cda36918e8
225 changed files with 35641 additions and 0 deletions

25
parser/package.json Normal file
View File

@@ -0,0 +1,25 @@
{
"name": "alpinbet-parser",
"version": "0.1.0",
"description": "Alpinbet HTML parser with HTTP fetching, Playwright-backed session auth, polling, change detection and webhook notifications.",
"main": "src/index.js",
"type": "commonjs",
"scripts": {
"auth": "node scripts/save-session.js",
"start": "node src/index.js",
"start:with-db-url": "node scripts/with-db-url.cjs node src/index.js",
"dev": "node --watch src/index.js",
"check-session": "node scripts/check-session.js",
"debug-fetch": "node scripts/debug-fetch.js"
},
"dependencies": {
"axios": "^1.8.4",
"betting-signals-platform": "file:..",
"bullmq": "^5.71.1",
"cheerio": "^1.0.0",
"dotenv": "^16.4.7",
"ioredis": "^5.10.1",
"pg": "^8.16.3",
"playwright": "^1.58.2"
}
}