Initial Commit

This commit is contained in:
2025-05-16 17:56:40 +02:00
commit bb96a05c03
46 changed files with 6152 additions and 0 deletions

27
apps/backend/package.json Normal file
View File

@@ -0,0 +1,27 @@
{
"name": "backend",
"version": "1.0.0",
"description": "",
"private": true,
"type": "module",
"scripts": {
"dev": "tsx watch src/index.ts",
"build": "tsc",
"start": "node dist/index.js"
},
"keywords": [],
"author": "",
"license": "ISC",
"packageManager": "pnpm@10.10.0",
"devDependencies": {
"@tsconfig/node-ts": "^23.6.1",
"@tsconfig/node23": "^23.0.1",
"@types/node": "^22.15.18",
"tsx": "^4.19.4",
"typescript": "^5.8.3"
},
"dependencies": {
"dotenv": "^16.5.0",
"fastify": "^5.3.3"
}
}