mirror of
https://github.com/vercel/next-learn.git
synced 2026-06-23 12:45:51 +00:00
* Run create-next-app * Add READMEs * Remove stuff we don't need * Add dummy data * Add types for dummy data * Add dummy routes * Remove unused CSS * Split dummy data and definitions * Add prettier plugin for tailwind * Create background-blur.tsx * Create hero.tsx * Create login-form.tsx * Tweak * Install hero icons and clsx * Create calculations.tsx * Update dummy-data.tsx * Create card.tsx * Create dashboard-overview.tsx * Update page.tsx * Add placeholder for dashboard-topnav * Adjust sizings for whole page * Update card styles and add icons * ugh, fonts are hard * misc * Remo unused import
35 lines
744 B
JSON
35 lines
744 B
JSON
{
|
|
"name": "15-final",
|
|
"version": "0.1.0",
|
|
"private": true,
|
|
"engines": {
|
|
"node": ">=18"
|
|
},
|
|
"scripts": {
|
|
"dev": "next dev",
|
|
"build": "next build",
|
|
"start": "next start",
|
|
"lint": "next lint"
|
|
},
|
|
"dependencies": {
|
|
"@heroicons/react": "^2.0.18",
|
|
"@types/node": "20.5.7",
|
|
"@types/react": "18.2.21",
|
|
"@types/react-dom": "18.2.7",
|
|
"autoprefixer": "10.4.15",
|
|
"clsx": "^2.0.0",
|
|
"eslint": "8.48.0",
|
|
"eslint-config-next": "13.4.19",
|
|
"next": "13.4.19",
|
|
"postcss": "8.4.28",
|
|
"react": "18.2.0",
|
|
"react-dom": "18.2.0",
|
|
"tailwindcss": "3.3.3",
|
|
"typescript": "5.2.2"
|
|
},
|
|
"devDependencies": {
|
|
"prettier": "^3.0.3",
|
|
"prettier-plugin-tailwindcss": "^0.5.3"
|
|
}
|
|
}
|