Files
bus_sg_app/package.json
T
furyhawk 89b7459cef feat: initialize SvelteKit project with bus API explorer
- 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
2026-06-01 13:49:17 +08:00

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"
}
}