inital backend

This commit is contained in:
Brandon Skewes
2025-12-12 22:36:12 +11:00
parent 05897fd1e1
commit e8a401b2dc
6 changed files with 261 additions and 0 deletions

18
backend/app/package.json Normal file
View File

@@ -0,0 +1,18 @@
{
"name": "app",
"version": "1.0.50",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"dev": "bun run --watch src/index.ts"
},
"dependencies": {
"elysia": "latest"
},
"devDependencies": {
"@types/node": "^25.0.1",
"bun-types": "latest",
"typescript": "^5.9.3",
"typescript-language-server": "^5.1.3"
},
"module": "src/index.js"
}