feat: add backend server

This commit is contained in:
2026-05-11 16:01:22 +08:00
parent 3c838d534f
commit e24a34deb4
11 changed files with 1709 additions and 0 deletions

19
server/package.json Normal file
View File

@@ -0,0 +1,19 @@
{
"name": "server",
"version": "1.0.0",
"description": "",
"license": "ISC",
"author": "hbk01",
"type": "module",
"main": "index.js",
"scripts": {
"dev": "nodemon index.js"
},
"dependencies": {
"bcrypt": "^6.0.0",
"dotenv": "^17.4.2",
"express": "^5.2.1",
"jsonwebtoken": "^9.0.3",
"mongoose": "^9.5.0"
}
}