Files for Todo_admin added

This commit is contained in:
Diven2510
2025-12-30 19:44:14 +05:30
parent fd223884cd
commit eef41c105c
34 changed files with 7687 additions and 0 deletions

23
Backend/package.json Normal file
View File

@@ -0,0 +1,23 @@
{
"name": "todo-backend",
"version": "1.0.0",
"description": "Backend for Todo App with Authentication",
"main": "server.js",
"type": "module",
"scripts": {
"start": "node server.js",
"dev": "nodemon server.js",
"test-db": "node test-connection.js"
},
"dependencies": {
"express": "^4.18.2",
"mongoose": "^8.0.0",
"bcryptjs": "^2.4.3",
"jsonwebtoken": "^9.0.2",
"cors": "^2.8.5",
"dotenv": "^16.3.1"
},
"devDependencies": {
"nodemon": "^3.0.1"
}
}