로그인 전까지 기능

This commit is contained in:
dsyoon
2026-01-27 11:23:17 +09:00
commit 4b10aef1b0
1187 changed files with 601089 additions and 0 deletions

30
server/package.json Normal file
View File

@@ -0,0 +1,30 @@
{
"name": "server",
"version": "1.0.0",
"type": "module",
"main": "dist/index.js",
"scripts": {
"dev": "tsx watch src/index.ts",
"build": "tsc",
"start": "node dist/index.js",
"migrate": "tsx src/migrate.ts"
},
"keywords": [],
"author": "",
"license": "ISC",
"description": "",
"dependencies": {
"cors": "^2.8.6",
"dotenv": "^17.2.3",
"express": "^5.2.1",
"pg": "^8.17.2",
"ws": "^8.19.0"
},
"devDependencies": {
"@types/express": "^5.0.6",
"@types/node": "^25.0.10",
"@types/ws": "^8.18.1",
"tsx": "^4.21.0",
"typescript": "^5.9.3"
}
}