File size: 781 Bytes
ea67eaf f97ac6a ea67eaf ec4bf22 ea67eaf ec4bf22 | 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 | {
"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"
}
} |