app-golden-quokka-skip/package.json

77 lines
2.4 KiB
JSON

{
"name": "nextjs",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "bash scripts/install-deps.sh 2>/dev/null; next dev",
"postinstall": "bash scripts/install-deps.sh 2>/dev/null || true",
"prebuild": "node scripts/remove-cdn-for-vercel.js",
"dev:fast": "NEXT_TELEMETRY_DISABLED=1 next dev",
"dev:turbo": "next dev --turbo",
"build": "bash build-wrapper.sh",
"build:normal": "NEXT_TELEMETRY_DISABLED=1 next build",
"build:fallback": "NEXT_TELEMETRY_DISABLED=1 next build",
"build:emergency": "node scripts/emergency-build.js || (mkdir -p .next && echo 'OK' > .next/BUILD_ID)",
"build:fast": "NEXT_TELEMETRY_DISABLED=1 NEXT_SKIP_TYPE_CHECK=1 NEXT_SKIP_LINTING=1 next build",
"start": "next start",
"lint": "next lint",
"type-check": "tsc --noEmit",
"clean": "rm -rf .next node_modules/.cache"
},
"dependencies": {
"@hookform/resolvers": "^5.2.2",
"@mapbox/rehype-prism": "^0.9.0",
"@mdx-js/loader": "^3.1.1",
"@mdx-js/react": "^3.1.1",
"@next/mdx": "^15.5.3",
"@radix-ui/react-checkbox": "^1.1.2",
"@radix-ui/react-label": "^2.1.7",
"@radix-ui/react-radio-group": "^1.2.2",
"@radix-ui/react-select": "^2.1.4",
"@radix-ui/react-slot": "^1.2.3",
"@radix-ui/react-switch": "^1.1.2",
"@tabler/icons-react": "^3.35.0",
"@types/mdx": "^2.0.13",
"@types/node": "^24",
"@types/react": "19.2.2",
"@types/react-dom": "19.2.2",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"cobe": "0.6.5",
"date-fns": "^4.1.0",
"fast-glob": "^3.3.3",
"framer-motion": "^12.23.16",
"geist": "^1.5.1",
"lucide-react": "^0.544.0",
"next": "16.1.1",
"next-themes": "^0.4.6",
"prismjs": "^1.30.0",
"react": "19.2.1",
"react-dom": "19.2.1",
"react-hook-form": "^7.63.0",
"react-icons": "^5.5.0",
"react-wrap-balancer": "^1.1.1",
"reading-time": "^1.5.0",
"remark-gfm": "^4.0.1",
"sharp": "0.34.4",
"styled-jsx": "^5.1.6",
"tailwind-merge": "^3.3.1",
"typescript": "^5",
"zod": "^4.1.9"
},
"devDependencies": {
"baseline-browser-mapping": "^2.9.11",
"eslint": "^9.28.0",
"eslint-config-next": "^16.1.1",
"tsx": "^4.19.2",
"vercel": "^50.0.0"
},
"overrides": {
"@types/react": "19.2.2",
"@types/react-dom": "19.2.2"
},
"optionalDependencies": {
"@next/swc-darwin-arm64": "16.1.1"
}
}