Initial commit of template

This commit is contained in:
Antigravity
2026-07-16 14:04:00 +05:30
commit 74292814a5
22 changed files with 1843 additions and 0 deletions

23
package.json Normal file
View File

@@ -0,0 +1,23 @@
{
"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",
"node-cron": "^4.5.0"
},
"devDependencies": {
"@types/cors": "^2.8.19",
"@types/express": "^5.0.3",
"@types/node": "^24.0.7",
"typescript": "^5.8.3"
}
}