AI Update: Started backend platform server on port 8080

This commit is contained in:
Noah AI
2026-06-29 13:20:41 +00:00
parent aa81c87150
commit 994040e004
17 changed files with 1202 additions and 0 deletions

22
backend/package.json Normal file
View File

@@ -0,0 +1,22 @@
{
"name": "backend-todo-app-template",
"version": "1.0.0",
"private": true,
"type": "module",
"scripts": {
"dev": "bun --watch src/index.ts",
"start": "bun src/index.ts",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"cors": "^2.8.5",
"dotenv": "^17.2.0",
"express": "^5.1.0"
},
"devDependencies": {
"@types/cors": "^2.8.19",
"@types/express": "^5.0.3",
"@types/node": "^24.0.7",
"typescript": "^5.8.3"
}
}