mirror of
https://github.com/furyhawk/bus_sg_app.git
synced 2026-07-21 10:16:48 +00:00
- Add main application styles in app.css - Create basic HTML structure in app.html - Implement server-side hooks for API proxying in hooks.server.js - Set up layout component in +layout.svelte - Develop main page with endpoint explorer and arrival check functionality in +page.svelte - Configure SvelteKit with adapter in svelte.config.js - Set up Vite configuration for SvelteKit in vite.config.js
20 lines
495 B
JSON
20 lines
495 B
JSON
{
|
|
"name": "bus-sg-app",
|
|
"version": "1.0.0",
|
|
"private": true,
|
|
"description": "Singapore bus transport app powered by OpenAPI gateway",
|
|
"type": "module",
|
|
"scripts": {
|
|
"dev": "vite dev --host --port 3000",
|
|
"build": "vite build",
|
|
"preview": "vite preview --host --port 3000",
|
|
"start": "vite preview --host --port 3000"
|
|
},
|
|
"devDependencies": {
|
|
"@sveltejs/adapter-auto": "^7.0.1",
|
|
"@sveltejs/kit": "^2.61.1",
|
|
"svelte": "^5.56.0",
|
|
"vite": "^7.0.0"
|
|
}
|
|
}
|