7b997dc354
- Migrated from Bun/Hono to modern SvelteKit tech stack - Implemented complete authentication module (Azure MSAL + PocketBase) - Created 5 API endpoints for auth operations (config, graph token, validate, refresh, compare) - Built interactive Svelte dashboard with mobile optimization (iPhone 16) - Added Node.js adapter (@sveltejs/adapter-node) for production deployment - Integrated Tailwind CSS with responsive design - Fixed orchestrator to spawn Mode1Svelte with Node.js on port 3005 - Updated systemd service (job-info-test.service) to start orchestrator on port 3006 - Port configuration locked: 3005 = Mode1Svelte, 3006 = Orchestrator - Full TypeScript type safety throughout application - Services auto-managed by orchestrator with systemd integration
35 lines
921 B
JSON
35 lines
921 B
JSON
{
|
|
"name": "mode1svelte",
|
|
"private": true,
|
|
"version": "0.0.1",
|
|
"type": "module",
|
|
"scripts": {
|
|
"dev": "vite dev --port 3005",
|
|
"build": "vite build",
|
|
"preview": "vite preview",
|
|
"start": "PORT=3005 node build/index.js",
|
|
"prepare": "svelte-kit sync || echo ''",
|
|
"check": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json",
|
|
"check:watch": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json --watch"
|
|
},
|
|
"devDependencies": {
|
|
"@sveltejs/adapter-node": "^5.5.2",
|
|
"@sveltejs/kit": "^2.49.1",
|
|
"@sveltejs/vite-plugin-svelte": "^6.2.1",
|
|
"@tailwindcss/postcss": "^4.1.18",
|
|
"autoprefixer": "^10.4.23",
|
|
"postcss": "^8.5.6",
|
|
"svelte": "^5.45.6",
|
|
"svelte-check": "^4.3.4",
|
|
"tailwindcss": "^4.1.18",
|
|
"typescript": "^5.9.3",
|
|
"vite": "^7.2.6"
|
|
},
|
|
"dependencies": {
|
|
"@azure/msal-node": "^5.0.2",
|
|
"@types/node": "^25.0.10",
|
|
"dotenv": "^17.2.3",
|
|
"pocketbase": "^0.26.6"
|
|
}
|
|
}
|