- Added new UI components: `Logo`, `Alert`, `Button`, `Input`, and `Card`. - Refactored `LoginForm` to utilize new components for better structure and styling. - Enhanced error handling in `LoginFormData` with specific error messages. - Updated styles for grid layout and various UI elements for a cohesive design. - Removed Bootstrap dependency in favor of custom styles for better control.
26 lines
603 B
JSON
26 lines
603 B
JSON
{
|
|
"name": "trepa-web",
|
|
"type": "module",
|
|
"version": "0.0.1",
|
|
"scripts": {
|
|
"dev": "bunx --bun astro dev",
|
|
"build": "rm -rf dist && bunx --bun astro check && bunx --bun astro build",
|
|
"preview": "bunx --bun astro preview",
|
|
"astro": "astro"
|
|
},
|
|
"dependencies": {
|
|
"@astrojs/check": "^0.9.4",
|
|
"@astrojs/node": "^9.1.3",
|
|
"@astrojs/react": "^4.2.2",
|
|
"@types/react": "^18.3.5",
|
|
"@types/react-dom": "^18.3.0",
|
|
"astro": "^5.5.5",
|
|
"react": "^18.3.1",
|
|
"react-dom": "^18.3.1",
|
|
"react-icons": "^5.5.0",
|
|
"typescript": "^5.8.2"
|
|
},
|
|
"devDependencies": {
|
|
"@biomejs/biome": "1.9.4"
|
|
}
|
|
}
|