Login works

This commit is contained in:
Ebenezer
2026-03-27 15:44:21 +08:00
parent d5c75c9f5c
commit e7816f78f3
1185 changed files with 198529 additions and 34 deletions

18
backend/package.json Normal file
View File

@@ -0,0 +1,18 @@
{
"name": "youwei-auth-backend",
"version": "1.0.0",
"private": true,
"type": "module",
"scripts": {
"start": "node auth-api.js",
"dev": "node --watch auth-api.js"
},
"dependencies": {
"argon2": "^0.44.0",
"bcryptjs": "^2.4.3",
"cors": "^2.8.5",
"dotenv": "^16.6.1",
"express": "^4.21.2",
"mysql2": "^3.15.3"
}
}