first commit

This commit is contained in:
mstfyldz
2026-05-29 23:23:50 +03:00
commit 0773e7f6f3
9 changed files with 241 additions and 0 deletions
+21
View File
@@ -0,0 +1,21 @@
{
"name": "link-scraper",
"version": "1.0.0",
"scripts": {
"dev": "ts-node-dev --respawn src/index.ts",
"build": "tsc",
"start": "node dist/index.js"
},
"dependencies": {
"express": "^4.18.2",
"playwright": "^1.44.0",
"cors": "^2.8.5"
},
"devDependencies": {
"@types/express": "^4.17.21",
"@types/cors": "^2.8.17",
"@types/node": "^20.12.7",
"typescript": "^5.4.5",
"ts-node-dev": "^2.0.0"
}
}