mirror of
https://github.com/snowykami/sfkm.me-next.git
synced 2025-09-04 03:16:44 +00:00
- Added global CSS file with Tailwind CSS imports and custom styles for light and dark themes. - Created layout component to include Google Fonts and set up metadata for the application. - Developed main page layout with responsive design, including navigation and footer links. - Configured TypeScript settings for the project with strict type checking and module resolution.
28 lines
579 B
JSON
28 lines
579 B
JSON
{
|
|
"name": "sfkm.me-next",
|
|
"version": "0.1.0",
|
|
"private": true,
|
|
"scripts": {
|
|
"dev": "next dev --turbopack",
|
|
"build": "next build",
|
|
"start": "next start",
|
|
"lint": "next lint"
|
|
},
|
|
"dependencies": {
|
|
"react": "19.1.0",
|
|
"react-dom": "19.1.0",
|
|
"next": "15.4.6"
|
|
},
|
|
"devDependencies": {
|
|
"typescript": "^5",
|
|
"@types/node": "^20",
|
|
"@types/react": "^19",
|
|
"@types/react-dom": "^19",
|
|
"@tailwindcss/postcss": "^4",
|
|
"tailwindcss": "^4",
|
|
"eslint": "^9",
|
|
"eslint-config-next": "15.4.6",
|
|
"@eslint/eslintrc": "^3"
|
|
}
|
|
}
|