mirror of
https://github.com/snowykami/web-tools.git
synced 2025-09-03 19:56:27 +00:00
- Added global CSS file with Tailwind CSS integration and custom styles for light and dark themes. - Created layout component to manage global layout and font settings using Google Fonts. - Developed home page with responsive design, including navigation and deployment links. - Added TypeScript configuration for strict type checking and module resolution. - Created an empty page for the RT guide section.
28 lines
576 B
JSON
28 lines
576 B
JSON
{
|
|
"name": "web-tools",
|
|
"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"
|
|
}
|
|
}
|