Files
jaejadle/nextjs/package.json
Mayne0213 f78454c2a1
Some checks failed
Build Docker Image / build-and-push (push) Has been cancelled
CI / lint-and-build (push) Has been cancelled
CHORE(merge): merge from develop
- Initial setup and all features from develop branch
- Includes: auth, deploy, docker, style fixes
- K3S deployment configuration
2026-01-06 17:29:16 +09:00

55 lines
1.4 KiB
JSON

{
"name": "jaejadle",
"version": "0.1.0",
"private": true,
"type": "module",
"scripts": {
"dev": "next dev --turbopack",
"build": "prisma generate && next build --turbopack",
"start": "next start",
"lint": "eslint",
"prisma:generate": "prisma generate",
"prisma:migrate": "prisma migrate dev",
"prisma:studio": "prisma studio"
},
"dependencies": {
"@aws-sdk/client-s3": "^3.857.0",
"@aws-sdk/s3-request-presigner": "^3.857.0",
"@prisma/client": "^6.0.0",
"bcryptjs": "^3.0.2",
"cookie": "^1.0.2",
"dotenv": "^17.2.3",
"jose": "^6.0.11",
"jsonwebtoken": "^9.0.2",
"lucide-react": "^0.548.0",
"mime-types": "^3.0.2",
"mysql2": "^3.15.3",
"next": "^16.0.7",
"next-auth": "^5.0.0-beta.30",
"placeholder": "^1.2.3",
"react": "^19.2.1",
"react-dom": "^19.2.1",
"react-hook-form": "^7.65.0",
"react-kakao-maps-sdk": "^1.2.0",
"react-spinners": "^0.17.0",
"sharp": "^0.34.5",
"tailwindcss-safe-area": "^1.3.0"
},
"devDependencies": {
"@eslint/eslintrc": "^3",
"@tailwindcss/postcss": "^4",
"@types/bcryptjs": "^2.4.6",
"@types/cookie": "^0.6.0",
"@types/jsonwebtoken": "^9.0.10",
"@types/mime-types": "^3.0.1",
"@types/node": "^20",
"@types/react": "^19",
"@types/react-dom": "^19",
"eslint": "^9",
"eslint-config-next": "15.5.5",
"prisma": "^6.0.0",
"tailwindcss": "^4",
"typescript": "5.7"
}
}