29 lines
819 B
JSON
29 lines
819 B
JSON
{
|
|
"name": "scraper",
|
|
"version": "0.0.1",
|
|
"type": "module",
|
|
"description": "This is an example of a Crawlee project.",
|
|
"dependencies": {
|
|
"@fastify/cors": "^9.0.1",
|
|
"cheerio": "^1.0.0-rc.12",
|
|
"crawlee": "^3.9.2",
|
|
"fastify": "^4.26.2",
|
|
"playwright": "*"
|
|
},
|
|
"devDependencies": {
|
|
"@types/node": "^20.0.0",
|
|
"tsx": "^4.4.0",
|
|
"typescript": "~5.4.0"
|
|
},
|
|
"scripts": {
|
|
"start": "npm run start:dev",
|
|
"start:prod": "node dist/main.js",
|
|
"start:dev": "tsx src/main.js",
|
|
"build": "tsc",
|
|
"test": "echo \"Error: oops, the actor has no tests yet, sad!\" && exit 1",
|
|
"postinstall": "npx crawlee install-playwright-browsers"
|
|
},
|
|
"author": "It's not you it's me",
|
|
"license": "ISC"
|
|
}
|