Commits (2)
-
qionghong liu authored3bf09937
-
qionghong liu authored23e3ae0b
.dockerignore
0 → 100644
.gitignore
0 → 100644
Dockerfile
0 → 100644
README.md
0 → 100644
data/users.json
0 → 100644
docker-compose.yml
0 → 100644
next.config.js
0 → 100644
nginx.conf
0 → 100644
package-lock.json
0 → 100644
This diff is collapsed.
package.json
0 → 100644
{ | ||
"name": "xlab_chatroom", | ||
"version": "0.1.0", | ||
"private": true, | ||
"scripts": { | ||
"dev": "next dev", | ||
"build": "next build", | ||
"start": "next start", | ||
"lint": "next lint" | ||
}, | ||
"dependencies": { | ||
"bcryptjs": "^3.0.2", | ||
"jsonwebtoken": "^9.0.2", | ||
"next": "15.4.6", | ||
"react": "19.1.0", | ||
"react-dom": "19.1.0", | ||
"swr": "^2.3.6" | ||
}, | ||
"devDependencies": { | ||
"@types/bcryptjs": "^2.4.6", | ||
"@types/jsonwebtoken": "^9.0.10", | ||
"@types/node": "^20", | ||
"@types/react": "^19", | ||
"@types/react-dom": "^19", | ||
"typescript": "^5" | ||
} | ||
} | ||
src/app/api/auth/me/route.ts
0 → 100644
src/app/chatroom/page.tsx
0 → 100644