Initialized and setup backend

This commit is contained in:
Manik Maity
2024-11-05 21:12:58 +05:30
parent 50e9a7c6ae
commit 322e7a5b56
6 changed files with 1350 additions and 0 deletions

21
backend/package.json Normal file
View File

@@ -0,0 +1,21 @@
{
"name": "backend",
"version": "1.0.0",
"main": "index.js",
"type": "module",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"dev": "node --watch ./src/index.js"
},
"keywords": [],
"author": "",
"license": "ISC",
"description": "",
"dependencies": {
"cors": "^2.8.5",
"dotenv": "^16.4.5",
"express": "^4.21.1",
"mongoose": "^8.8.0",
"socket.io": "^4.8.1"
}
}