biohazard-vfx/package.json
Nicholai 11410f9727 Initial project setup with Next.js, Tailwind CSS, TypeScript, and ESLint configuration
- Configured Next.js app with app router
- Set up Tailwind CSS with custom dark theme
- Implemented providers with SessionProvider and ThemeProvider
- Added toast system
- Configured ESLint and Prettier
- Set up pre-commit hooks with husky and lint-staged

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

Co-Authored-By: opencode <noreply@opencode.ai>
2025-08-07 15:33:04 -06:00

65 lines
1.7 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"
},
"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",
"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": {
"@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"
]
}
}