Adding the react-hook-form library for better form handling than React's built-in state management, which often renders every time input is entered.
50 lines
1.2 KiB
JSON
50 lines
1.2 KiB
JSON
{
|
|
"name": "frontend",
|
|
"version": "0.1.0",
|
|
"private": true,
|
|
"type": "module",
|
|
"scripts": {
|
|
"dev": "next dev --turbopack",
|
|
"build": "next build",
|
|
"start": "next start",
|
|
"lint": "next lint",
|
|
"commit": "bunx git-cz",
|
|
"push": "bun ./scripts/git-multipush.ts",
|
|
"env:publish": "bun ./scripts/create-env-example.ts"
|
|
},
|
|
"dependencies": {
|
|
"@heroui/react": "^2.8.2",
|
|
"@iconify/react": "^6.0.0",
|
|
"@sentry/nextjs": "10",
|
|
"@tailwindcss/postcss": "^4.1.11",
|
|
"commitizen": "^4.3.1",
|
|
"cz-emoji": "^1.3.2-canary.2",
|
|
"framer-motion": "^12.23.3",
|
|
"ky": "^1.8.2",
|
|
"next": "15.3.5",
|
|
"next-themes": "^0.4.6",
|
|
"nextjs-toploader": "^3.8.16",
|
|
"react": "^19.0.0",
|
|
"react-dom": "^19.0.0",
|
|
"react-hook-form": "^7.64.0",
|
|
"tailwindcss": "^4.1.11",
|
|
"zod": "^4.0.5"
|
|
},
|
|
"devDependencies": {
|
|
"@eslint/eslintrc": "^3",
|
|
"@types/node": "^20",
|
|
"@types/react": "^19",
|
|
"@types/react-dom": "^19",
|
|
"autoprefixer": "^10.4.21",
|
|
"eslint": "^9",
|
|
"eslint-config-next": "15.3.5",
|
|
"postcss": "^8.5.6",
|
|
"typescript": "^5"
|
|
},
|
|
"config": {
|
|
"commitizen": {
|
|
"path": "cz-emoji"
|
|
}
|
|
}
|
|
}
|