chore: fastify + ts setup

This commit is contained in:
karishmas6
2024-04-04 07:53:54 +05:30
parent 0691674442
commit 5c07c54b57
5 changed files with 734 additions and 0 deletions

20
scraper/package.json Normal file
View File

@@ -0,0 +1,20 @@
{
"name": "scraper",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"fastify": "^4.26.2"
},
"devDependencies": {
"@types/node": "^20.12.4",
"ts-node": "^10.9.2",
"typescript": "^5.4.3"
}
}