mirror of
https://github.com/tiennm99/exchange-rate-export.git
synced 2026-05-24 08:25:02 +00:00
4e818ff197
- Downgrade eslint ^10 → ^9 (eslint-config-next@16 requires eslint >=9) - 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)
37 lines
810 B
JSON
37 lines
810 B
JSON
{
|
|
"name": "exchange-rate-export",
|
|
"version": "0.1.0",
|
|
"packageManager": "pnpm@11.1.1",
|
|
"private": true,
|
|
"scripts": {
|
|
"dev": "next dev --turbopack",
|
|
"build": "next build",
|
|
"start": "next start",
|
|
"lint": "eslint src"
|
|
},
|
|
"dependencies": {
|
|
"@vercel/analytics": "^2.0.1",
|
|
"@vercel/speed-insights": "^2.0.0",
|
|
"axios": "^1.16.1",
|
|
"date-fns": "^4.3.0",
|
|
"next": "16.2.6",
|
|
"react": "^19.0.0",
|
|
"react-datepicker": "^9.1.0",
|
|
"react-dom": "^19.0.0",
|
|
"recharts": "^3.8.1",
|
|
"xlsx": "^0.18.5"
|
|
},
|
|
"devDependencies": {
|
|
"@tailwindcss/postcss": "^4",
|
|
"eslint": "^9",
|
|
"eslint-config-next": "16.2.6",
|
|
"tailwindcss": "^4"
|
|
},
|
|
"engines": {
|
|
"node": ">=24"
|
|
},
|
|
"pnpm": {
|
|
"ignoredBuiltDependencies": ["sharp", "unrs-resolver"]
|
|
}
|
|
}
|