- CORS origin 검증 로직 추가 (운영 도메인 + localhost + 192.168.x.x) - Redis 기반 세션/토큰 관리 유틸 추가 - departments 테이블 JOIN 지원 (findByUsername, findById) Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
19 lines
406 B
JSON
19 lines
406 B
JSON
{
|
|
"name": "sso-auth-service",
|
|
"version": "1.0.0",
|
|
"description": "TK Factory Services - 중앙 SSO 인증 서비스",
|
|
"main": "index.js",
|
|
"scripts": {
|
|
"start": "node index.js",
|
|
"dev": "node --watch index.js"
|
|
},
|
|
"dependencies": {
|
|
"bcrypt": "^6.0.0",
|
|
"cors": "^2.8.5",
|
|
"express": "^4.18.2",
|
|
"jsonwebtoken": "^9.0.0",
|
|
"mysql2": "^3.14.1",
|
|
"redis": "^4.6.0"
|
|
}
|
|
}
|