Files
LivePoll/backend/package.json

28 lines
607 B
JSON
Raw Normal View History

2024-11-05 21:12:58 +05:30
{
"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": {
2024-11-07 21:08:08 +05:30
"bcrypt": "^5.1.1",
2024-11-08 12:51:14 +05:30
"cookie-parser": "^1.4.7",
2024-11-05 21:12:58 +05:30
"cors": "^2.8.5",
"dotenv": "^16.4.5",
"express": "^4.21.1",
2024-11-08 12:51:14 +05:30
"jsonwebtoken": "^9.0.2",
2024-11-05 21:12:58 +05:30
"mongoose": "^8.8.0",
2024-11-07 21:08:08 +05:30
"socket.io": "^4.8.1",
"swagger-jsdoc": "^6.2.8",
"swagger-ui-express": "^5.0.1",
"zod": "^3.23.8"
2024-11-05 21:12:58 +05:30
}
}