chore: fastify + ts api setup

This commit is contained in:
karishmas6
2024-04-04 08:58:17 +05:30
parent 5c07c54b57
commit 2e6a0290f2
7 changed files with 23 additions and 2 deletions

21
api/package.json Normal file
View File

@@ -0,0 +1,21 @@
{
"name": "api",
"version": "1.0.0",
"description": "",
"main": "index.js",
"type": "module",
"scripts": {
"start": "ts-node src/index.ts"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"fastify": "^4.26.2"
},
"devDependencies": {
"@types/node": "^20.12.4",
"ts-node": "^10.9.2",
"typescript": "^5.4.3"
}
}