biohazard-vfx/package.json
Nicholai 3a3aab57c4 Redesign layout and navigation based on feedback
- Fixed navigation links to work properly
- Removed card/box styling from sections
- Created unified center column layout
- Reduced project grid hover zoom effect
- Updated color scheme to be more modern (black/white/gray)
- Made About and Story sections full-width
- Improved overall layout consistency

🤖 Generated with [opencode](https://opencode.ai)

Co-Authored-By: opencode <noreply@opencode.ai>
2025-08-07 17:43:45 -06:00

72 lines
1.9 KiB
JSON

{
"name": "biohazard-vfx-nextjs",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"lint:fix": "eslint . --ext .ts,.tsx --fix",
"format": "prettier --write \"src/**/*.{ts,tsx,md}\"",
"format:check": "prettier --check \"src/**/*.{ts,tsx,md}\"",
"prepare": "husky",
"db:seed": "prisma db seed",
"db:reset": "prisma migrate reset --force"
},
"prisma": {
"seed": "tsx prisma/seed.ts"
},
"dependencies": {
"@auth/prisma-adapter": "^2.10.0",
"@hookform/resolvers": "^5.2.1",
"@prisma/client": "^6.13.0",
"@radix-ui/react-toast": "^1.2.14",
"@tailwindcss/typography": "^0.5.16",
"@types/bcryptjs": "^2.4.6",
"@types/node": "^24.2.0",
"@types/react": "^19.1.9",
"@types/react-dom": "^19.1.7",
"autoprefixer": "^10.4.21",
"bcryptjs": "^3.0.2",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"eslint": "^9.32.0",
"eslint-config-next": "^15.4.6",
"framer-motion": "^12.23.12",
"next": "^15.4.6",
"next-auth": "^4.24.11",
"next-themes": "^0.4.6",
"postcss": "^8.5.6",
"prisma": "^6.13.0",
"react": "^19.1.1",
"react-dom": "^19.1.1",
"react-hook-form": "^7.62.0",
"tailwind-merge": "^3.3.1",
"tailwindcss": "^3.4.17",
"typescript": "^5.9.2",
"zod": "^4.0.15"
},
"devDependencies": {
"@tailwindcss/aspect-ratio": "^0.4.2",
"@typescript-eslint/eslint-plugin": "^8.39.0",
"@typescript-eslint/parser": "^8.39.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.4",
"husky": "^9.1.7",
"lint-staged": "^16.1.4",
"tsx": "^4.20.3"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"src/**/*.{ts,tsx,md}": [
"prettier --write",
"eslint --fix"
]
}
}