Update package.json

This commit is contained in:
kleap-admin 2026-01-16 15:59:45 +00:00
parent 8c534c1e45
commit e5ac073422
1 changed files with 5 additions and 13 deletions

View File

@ -3,16 +3,8 @@
"version": "0.1.0", "version": "0.1.0",
"private": true, "private": true,
"scripts": { "scripts": {
"dev": "bash scripts/install-deps.sh 2>/dev/null; next dev", "dev": "next dev",
"postinstall": "bash scripts/install-deps.sh 2>/dev/null || true", "build": "NEXT_TELEMETRY_DISABLED=1 next build",
"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", "start": "next start",
"lint": "next lint", "lint": "next lint",
"type-check": "tsc --noEmit", "type-check": "tsc --noEmit",
@ -43,7 +35,7 @@
"framer-motion": "^12.23.16", "framer-motion": "^12.23.16",
"geist": "^1.5.1", "geist": "^1.5.1",
"lucide-react": "^0.544.0", "lucide-react": "^0.544.0",
"next": "15.1.9", "next": "15.1.7",
"next-themes": "^0.4.6", "next-themes": "^0.4.6",
"prismjs": "^1.30.0", "prismjs": "^1.30.0",
"react": "19.2.1", "react": "19.2.1",
@ -62,7 +54,7 @@
"devDependencies": { "devDependencies": {
"baseline-browser-mapping": "^2.9.11", "baseline-browser-mapping": "^2.9.11",
"eslint": "^9.28.0", "eslint": "^9.28.0",
"eslint-config-next": "15.1.9", "eslint-config-next": "15.1.7",
"tsx": "^4.19.2", "tsx": "^4.19.2",
"vercel": "^50.0.0" "vercel": "^50.0.0"
}, },
@ -70,4 +62,4 @@
"@types/react": "19.2.2", "@types/react": "19.2.2",
"@types/react-dom": "19.2.2" "@types/react-dom": "19.2.2"
} }
} }