- Added server port configuration in `astro.config.mjs`. - Updated Biome schema version in `biome.json`. - Updated dependencies in `package.json` to latest versions. - Introduced new devcontainer configuration files for development setup. - Removed unused components related to movie search and forms. - Refactored login handling with new Astro components for better error management. - Adjusted layouts for improved structure and user experience.
27 lines
628 B
JSON
27 lines
628 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",
|
|
"bootstrap": "^5.3.3",
|
|
"react": "^18.3.1",
|
|
"react-dom": "^18.3.1",
|
|
"react-icons": "^5.5.0",
|
|
"typescript": "^5.8.2"
|
|
},
|
|
"devDependencies": {
|
|
"@biomejs/biome": "1.9.4"
|
|
}
|
|
}
|