Files
firecrawl/apps/playwright-service-ts/package.json
T

30 lines
680 B
JSON
Raw Normal View History

2024-06-26 12:32:30 -07:00
{
"name": "playwright-scraper-api",
"version": "1.0.0",
"description": "scraper api with playwright",
"main": "api.ts",
"scripts": {
"start": "node dist/api.js",
"build": "tsc",
"dev": "ts-node api.ts"
},
"keywords": [],
"author": "Jeff Pereira",
"license": "ISC",
"dependencies": {
"body-parser": "^1.20.2",
"dotenv": "^16.4.5",
"express": "^4.19.2",
"playwright": "^1.45.0",
"user-agents": "^1.1.410"
2024-06-26 12:32:30 -07:00
},
"devDependencies": {
"@types/body-parser": "^1.19.5",
2024-06-26 12:32:30 -07:00
"@types/express": "^4.17.21",
"@types/node": "^20.14.9",
"@types/user-agents": "^1.0.4",
2024-06-26 12:32:30 -07:00
"ts-node": "^10.9.2",
"typescript": "^5.5.2"
}
}