garm/webapp/package.json
Gabriel Adrian Samfira eec158b32c Add SPA UI for GARM
This change adds a single page application front-end to GARM. It uses
a generated REST client, built from the swagger definitions, the websocket
interface for live updates of entities and eager loading of everything
except runners, as users may have many runners and we don't want to load
hundreds of runners in memory.

Proper pagination should be implemented in the API, in future commits,
to avoid loading lots of elements for no reason.

Signed-off-by: Gabriel Adrian Samfira <gsamfira@cloudbasesolutions.com>
2025-08-16 09:09:13 +00:00

43 lines
1.2 KiB
JSON

{
"name": "garm-webapp",
"version": "0.0.1",
"private": true,
"scripts": {
"dev": "NODE_ENV=development vite dev --host 0.0.0.0 --port 5173",
"build": "vite build",
"preview": "vite preview",
"check": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json",
"check:watch": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json --watch"
},
"devDependencies": {
"@openapitools/openapi-generator-cli": "^2.21.4",
"@sveltejs/adapter-static": "^3.0.1",
"@sveltejs/kit": "^2.0.0",
"@sveltejs/vite-plugin-svelte": "^6.1.0",
"@tailwindcss/forms": "^0.5.7",
"@tailwindcss/postcss": "^4.1.11",
"@types/node": "^24.2.0",
"autoprefixer": "^10.4.16",
"postcss": "^8.4.32",
"svelte": "^5.38.0",
"svelte-check": "^4.3.1",
"swagger-typescript-api": "^13.2.7",
"tailwindcss": "^4.1.11",
"typescript": "^5.0.0",
"vite": "^7.1.1"
},
"type": "module",
"dependencies": {
"@codemirror/lang-json": "^6.0.2",
"@codemirror/state": "^6.5.2",
"@codemirror/theme-one-dark": "^6.1.3",
"@codemirror/view": "^6.38.1",
"@tailwindcss/typography": "^0.5.10",
"codemirror": "^6.0.2"
},
"description": "",
"main": "postcss.config.js",
"keywords": [],
"author": "",
"license": "ISC"
}