Context: - codex cli 중단 후에도 작업 품질과 맥락을 안정적으로 복구하기 위해 Changes: - docs/00~07, 90 문서 세트 추가/정리 - commit convention 문서 및 .gitmessage-session.txt 템플릿 추가 - scripts/session/recover-context.sh 추가 - package.json에 session:recover 스크립트 추가 Validation: - npm run session:recover Session-State: session recovery docs, template, and script are in place Session-Next: apply this commit format to feature and refactor commits Session-Risks: legacy commits before this change do not include session trailers
37 lines
951 B
JSON
37 lines
951 B
JSON
{
|
|
"name": "web",
|
|
"version": "0.1.0",
|
|
"private": true,
|
|
"scripts": {
|
|
"dev": "next dev",
|
|
"build": "next build",
|
|
"start": "next start",
|
|
"lint": "eslint",
|
|
"local": "cross-env NEXT_PUBLIC_API_BASE_URL=http://localhost:8080 next dev",
|
|
"session:recover": "bash scripts/session/recover-context.sh"
|
|
},
|
|
"dependencies": {
|
|
"@react-oauth/google": "^0.13.4",
|
|
"js-cookie": "^3.0.5",
|
|
"next": "16.1.6",
|
|
"react": "19.2.3",
|
|
"react-apple-signin-auth": "^1.1.2",
|
|
"react-dom": "19.2.3",
|
|
"react-facebook-login": "^4.1.1",
|
|
"zustand": "^5.0.11"
|
|
},
|
|
"devDependencies": {
|
|
"@tailwindcss/postcss": "^4",
|
|
"@types/js-cookie": "^3.0.6",
|
|
"@types/node": "^20",
|
|
"@types/react": "^19",
|
|
"@types/react-dom": "^19",
|
|
"@types/react-facebook-login": "^4.1.11",
|
|
"cross-env": "^10.1.0",
|
|
"eslint": "^9",
|
|
"eslint-config-next": "16.1.6",
|
|
"tailwindcss": "^4",
|
|
"typescript": "^5"
|
|
}
|
|
}
|