Files
sam-react-prod/package.json
byeongcheolryu 56386e6d88 [feat]: 테마 선택 및 언어 선택 기능 추가 (다국어 지원)
- 3가지 테마 모드 구현 (일반, 다크, 시니어) 및 localStorage 저장
- 언어 선택 기능 추가 (한국어, 영어, 일본어) 국기 아이콘 포함
- 전역 테마 관리를 위한 ThemeContext 생성
- 테마별 CSS 변수 및 시니어 모드 접근성 기능 추가
- 로그인/회원가입 페이지에 ThemeSelect, LanguageSelect 컴포넌트 추가
- ThemeProvider 사용하도록 루트 레이아웃 리팩토링
- 다단계 폼 검증을 포함한 인증 페이지 생성 (로그인, 회원가입)
- 다국어 지원 대시보드 페이지 추가
- layout, NavigationMenu, i18n/request의 TypeScript 'any' 타입 경고 수정
- 깨끗한 빌드를 위해 미사용 import 및 변수 제거
- .gitignore 업데이트 및 .env.example 추가

🤖 Generated with Claude Code

Co-Authored-By: Claude <noreply@anthropic.com>
2025-11-06 20:24:15 +09:00

38 lines
905 B
JSON

{
"name": "sma-next-project",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "eslint"
},
"dependencies": {
"@hookform/resolvers": "^5.2.2",
"@radix-ui/react-label": "^2.1.8",
"@radix-ui/react-select": "^2.2.6",
"@radix-ui/react-slot": "^1.2.4",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"lucide-react": "^0.552.0",
"next": "^15.5.6",
"next-intl": "^4.4.0",
"react": "19.2.0",
"react-dom": "19.2.0",
"react-hook-form": "^7.66.0",
"tailwind-merge": "^3.3.1",
"zod": "^4.1.12"
},
"devDependencies": {
"@tailwindcss/postcss": "^4",
"@types/node": "^20",
"@types/react": "^19",
"@types/react-dom": "^19",
"eslint": "^9",
"eslint-config-next": "^15.5.6",
"tailwindcss": "^4",
"typescript": "^5"
}
}