1
0

initial commit

This commit is contained in:
2025-08-07 00:17:31 +02:00
commit 47a7c73316
11 changed files with 2676 additions and 0 deletions

22
package.json Normal file
View File

@@ -0,0 +1,22 @@
{
"name": "tablescraper",
"version": "1.0.0",
"description": "",
"license": "ISC",
"author": "Jakub Žitník",
"type": "commonjs",
"main": "server.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "concurrently \"node server.js\" \"node cron-runner.js\""
},
"dependencies": {
"axios": "^1.9.0",
"concurrently": "^9.2.0",
"express": "^5.1.0",
"node-cron": "^4.2.1",
"openai": "^5.0.2",
"puppeteer": "^24.10.0",
"xlsx": "^0.18.5"
}
}