mirror of
https://github.com/tiennm99/chambai.git
synced 2026-06-01 20:11:57 +00:00
5c91ac96f9
- Downgrade eslint ^10 → ^9 (eslint-config-next@16 requires eslint >=9) - Replace `next lint` script with `eslint .` (next lint removed in Next 16) - Rewrite eslint.config.mjs to use native flat config API (defineConfig + eslint-config-next/core-web-vitals direct import) instead of FlatCompat bridge which triggers a circular-structure JSON crash with eslint-config-next@16 - Remove @eslint/eslintrc devDep (no longer needed with native flat config) - Fix pnpm-workspace.yaml allowBuilds placeholders → true
29 lines
602 B
JSON
29 lines
602 B
JSON
{
|
|
"name": "chambai",
|
|
"version": "0.1.0",
|
|
"packageManager": "pnpm@11.1.1",
|
|
"private": true,
|
|
"scripts": {
|
|
"dev": "next dev --turbopack",
|
|
"build": "next build",
|
|
"start": "next start",
|
|
"lint": "eslint ."
|
|
},
|
|
"dependencies": {
|
|
"next": "16.2.6",
|
|
"opencv-ts": "^1.3.6",
|
|
"papaparse": "^5.5.3",
|
|
"react": "^19.0.0",
|
|
"react-dom": "^19.0.0"
|
|
},
|
|
"devDependencies": {
|
|
"@tailwindcss/postcss": "^4",
|
|
"eslint": "^9",
|
|
"eslint-config-next": "16.2.6",
|
|
"tailwindcss": "^4"
|
|
},
|
|
"pnpm": {
|
|
"ignoredBuiltDependencies": ["sharp", "unrs-resolver"]
|
|
}
|
|
}
|