- Initialize Next.js 16.1.6 with TypeScript and App Router - Configure Tailwind CSS for styling - Install SWR for API state management - Set up environment variables for authentication and resource path - Update .gitignore to track .env.local Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
25 lines
469 B
JSON
25 lines
469 B
JSON
{
|
|
"name": "ftdl",
|
|
"version": "0.1.0",
|
|
"private": true,
|
|
"scripts": {
|
|
"dev": "next dev",
|
|
"build": "next build",
|
|
"start": "next start"
|
|
},
|
|
"dependencies": {
|
|
"next": "16.1.6",
|
|
"react": "19.2.3",
|
|
"react-dom": "19.2.3",
|
|
"swr": "^2.4.1"
|
|
},
|
|
"devDependencies": {
|
|
"@tailwindcss/postcss": "^4",
|
|
"@types/node": "^20",
|
|
"@types/react": "^19",
|
|
"@types/react-dom": "^19",
|
|
"tailwindcss": "^4",
|
|
"typescript": "^5"
|
|
}
|
|
}
|