biohazard-vfx/package.json
nicholai be9f0ce204
Some checks are pending
Build and Push to Docker Hub / Push Docker image to Docker Hub (push) Waiting to run
Build and Push Docker Image / build-and-push (push) Waiting to run
initialized bmad
2025-09-24 01:20:12 -06:00

100 lines
2.8 KiB
JSON

{
"name": "biohazard-vfx-nextjs",
"version": "0.1.0",
"private": true,
"type": "module",
"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",
"db:migrate-static": "tsx prisma/migrate-static-content.ts",
"changelog": "cat CHANGELOG.md",
"bmad:refresh": "bmad-method install -f -i codex",
"bmad:list": "bmad-method list:agents",
"bmad:validate": "bmad-method validate"
},
"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",
"@sentry/nextjs": "^10.10.0",
"@tabler/icons-react": "^3.34.1",
"@tailwindcss/typography": "^0.5.16",
"@tsparticles/engine": "^3.9.1",
"@tsparticles/react": "^3.0.0",
"@tsparticles/slim": "^3.9.1",
"@types/bcryptjs": "^2.4.6",
"@types/node": "^24.2.0",
"@types/react": "^19.1.9",
"@types/react-dom": "^19.1.7",
"@types/react-syntax-highlighter": "^15.5.13",
"@uiw/react-md-editor": "^4.0.8",
"@uploadthing/react": "^7.3.2",
"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",
"lenis": "^1.3.11",
"lucide-react": "^0.542.0",
"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",
"react-icons": "^5.5.0",
"react-markdown": "^10.1.0",
"react-syntax-highlighter": "^15.6.1",
"rehype-highlight": "^7.0.2",
"remark-gfm": "^4.0.1",
"tailwind-merge": "^3.3.1",
"tailwindcss": "^3.4.17",
"tailwindcss-animate": "^1.0.7",
"typescript": "^5.9.2",
"uploadthing": "^7.7.3",
"zod": "^4.0.15"
},
"devDependencies": {
"@tailwindcss/aspect-ratio": "^0.4.2",
"@tailwindcss/forms": "^0.5.10",
"@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"
]
},
"overrides": {
"effect": "3.16.12"
}
}