Removed five default Next.js scaffold SVGs from public/ that were created by create-next-app and never referenced (file.svg, globe.svg, next.svg, vercel.svg, window.svg). The actual brand mark public/fci-logo.png is the only image the app uses. Removed axios from dependencies — the app uses native fetch everywhere, and axios hasn't been imported since the initial scaffolding pass. Lockfile regenerated; build verified clean.
28 lines
564 B
JSON
28 lines
564 B
JSON
{
|
|
"name": "next-app",
|
|
"version": "0.1.0",
|
|
"private": true,
|
|
"scripts": {
|
|
"dev": "next dev",
|
|
"build": "next build",
|
|
"start": "next start",
|
|
"lint": "eslint"
|
|
},
|
|
"dependencies": {
|
|
"next": "16.2.6",
|
|
"react": "19.2.4",
|
|
"react-dom": "19.2.4",
|
|
"react-hook-form": "^7.75.0"
|
|
},
|
|
"devDependencies": {
|
|
"@tailwindcss/postcss": "^4",
|
|
"@types/node": "^20",
|
|
"@types/react": "^19",
|
|
"@types/react-dom": "^19",
|
|
"eslint": "^9",
|
|
"eslint-config-next": "16.2.6",
|
|
"tailwindcss": "^4",
|
|
"typescript": "^5"
|
|
}
|
|
}
|