This commit is contained in:
张成
2026-03-18 14:18:41 +08:00
parent 54341f0a0b
commit 5b671d320b
21 changed files with 4404 additions and 42 deletions

20
server/package.json Normal file
View File

@@ -0,0 +1,20 @@
{
"name": "ecom_crawl_server",
"version": "1.0.0",
"private": true,
"type": "module",
"scripts": {
"start": "node app.js",
"db_sync": "node scripts/db_sync.js"
},
"dependencies": {
"@koa/router": "^12.0.1",
"dotenv": "^16.4.5",
"koa": "^2.15.3",
"koa-bodyparser": "^4.4.1",
"mysql2": "^3.11.0",
"node-cron": "^3.0.3",
"puppeteer": "^23.4.1",
"sequelize": "^6.37.3"
}
}