Files
parcer/scraper/package.json

29 lines
819 B
JSON
Raw Normal View History

2024-04-04 09:12:35 +05:30
{
"name": "scraper",
"version": "0.0.1",
2024-04-16 23:50:10 +05:30
"type": "module",
2024-04-04 09:12:35 +05:30
"description": "This is an example of a Crawlee project.",
"dependencies": {
2024-04-16 22:43:44 +05:30
"@fastify/cors": "^9.0.1",
2024-05-10 22:01:56 +05:30
"cheerio": "^1.0.0-rc.12",
2024-04-18 22:02:38 +05:30
"crawlee": "^3.9.2",
2024-04-16 22:43:44 +05:30
"fastify": "^4.26.2",
2024-04-04 09:12:35 +05:30
"playwright": "*"
},
"devDependencies": {
2024-04-16 22:43:44 +05:30
"@types/node": "^20.0.0",
2024-04-04 09:12:35 +05:30
"tsx": "^4.4.0",
2024-04-16 22:43:44 +05:30
"typescript": "~5.4.0"
2024-04-04 09:12:35 +05:30
},
"scripts": {
"start": "npm run start:dev",
"start:prod": "node dist/main.js",
2024-04-16 22:43:44 +05:30
"start:dev": "tsx src/main.js",
2024-04-04 09:12:35 +05:30
"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"
}