crawler2 / package.json
GitHub Actions Bot
🚀 Auto-deploy: 5d74de4ffce97f8bbd420c866de5e20ac52a3bad
ec4bf22
Raw
History Blame Contribute Delete
781 Bytes
{
"name": "smart-search-crawler",
"version": "1.0.0",
"description": "Otto product crawler using Crawlee and Playwright (TypeScript Version)",
"type": "module",
"scripts": {
"start": "tsx quick-start.ts",
"serve": "tsx watch server.ts",
"start:prod": "tsx server.ts",
"crawl:otto": "tsx src/otto-crawler.ts",
"crawl:amazon": "tsx src/amazon-crawler.ts",
"crawl:batch": "tsx src/batch-crawler.ts",
"quick": "tsx quick-start.ts",
"examples": "tsx examples/usage-examples.ts",
"build": "tsc --noEmit"
},
"dependencies": {
"cors": "^2.8.6",
"crawlee": "^3.8.0",
"express": "^5.2.1",
"playwright": "^1.40.0"
},
"devDependencies": {
"@types/node": "^20.12.7",
"tsx": "^4.7.0",
"typescript": "^5.4.5"
}
}