omni/frontend/package.json
Edward Sammut Alessi 7ed46ba968
feat(frontend): reintroduce apexcharts tree-shaking
Reintroduce apexcharts tree-shaking following their fixes from 5.10.2. This will reduce the bundle impact of apexcharts quite a bit, around 700kb.

Signed-off-by: Edward Sammut Alessi <edward.sammutalessi@siderolabs.com>
2026-03-10 11:58:02 +01:00

121 lines
3.5 KiB
JSON

{
"name": "frontend",
"private": true,
"version": "0.0.0",
"type": "module",
"engines": {
"node": "^24.14.0"
},
"msw": {
"workerDirectory": [
".storybook/public"
]
},
"scripts": {
"serve": "vite",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build",
"chromatic": "npx chromatic",
"build": "npm run tsc && vite build",
"preview": "vite preview",
"tsc": "vue-tsc --build",
"test": "vitest",
"test:e2e": "playwright test",
"lint": "eslint . && prettier -c .",
"lint:fix": "eslint . --fix && prettier -wl ."
},
"dependencies": {
"@auth0/auth0-vue": "^2.5.0",
"@headlessui/vue": "^1.7.23",
"@heroicons/vue": "^2.2.0",
"@internationalized/date": "^3.12.0",
"@jsonforms/vue": "^3.7.0",
"@jsonforms/vue-vanilla": "^3.7.0",
"@tanstack/vue-virtual": "^3.13.19",
"@vueuse/components": "^14.2.1",
"@vueuse/core": "^14.2.1",
"@vueuse/integrations": "^14.2.1",
"apexcharts": "^5.10.3",
"clsx": "^2.1.1",
"date-fns": "^4.1.0",
"fetch-intercept": "^2.4.0",
"idb-keyval": "^6.2.2",
"js-yaml": "^4.1.1",
"jwt-decode": "^4.0.0",
"lodash": "^4.17.23",
"luxon": "^3.7.2",
"monaco-editor": "^0.54.0",
"monaco-yaml": "^5.4.1",
"pluralize": "^8.0.0",
"reka-ui": "^2.9.0",
"semver": "^7.7.4",
"tailwind-merge": "^3.5.0",
"ua-parser-js": "^2.0.9",
"userpilot": "^1.4.2",
"uuid": "^13.0.0",
"vue": "^3.5.29",
"vue-router": "^5.0.3",
"vue-sonner": "^2.0.9",
"vue-virtual-scroller": "^2.0.0-beta.8",
"vue-word-highlighter": "^1.2.6",
"vue3-apexcharts": "^1.11.1",
"whatwg-fetch": "^3.6.20"
},
"devDependencies": {
"@chromatic-com/storybook": "^5.0.1",
"@eslint/compat": "^2.0.2",
"@faker-js/faker": "^10.3.0",
"@playwright/test": "^1.58.2",
"@storybook/addon-a11y": "^10.2.15",
"@storybook/vue3-vite": "^10.2.15",
"@tailwindcss/vite": "^4.2.1",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/user-event": "^14.6.1",
"@testing-library/vue": "^8.1.0",
"@tsconfig/node24": "^24.0.4",
"@types/js-yaml": "^4.0.9",
"@types/jsdom": "^28.0.0",
"@types/lodash": "^4.17.24",
"@types/luxon": "^3.7.1",
"@types/node": "^24.11.0",
"@types/pluralize": "^0.0.33",
"@types/semver": "^7.7.1",
"@vitejs/plugin-vue": "^6.0.4",
"@vitest/eslint-plugin": "^1.6.9",
"@vue/eslint-config-prettier": "^10.2.0",
"@vue/eslint-config-typescript": "^14.7.0",
"@vue/test-utils": "^2.4.6",
"@vue/tsconfig": "^0.9.0",
"dotenv": "^17.3.1",
"eslint": "^10.0.2",
"eslint-plugin-playwright": "^2.9.0",
"eslint-plugin-simple-import-sort": "^12.1.1",
"eslint-plugin-storybook": "^10.2.15",
"eslint-plugin-vue": "^10.8.0",
"fake-indexeddb": "^6.2.5",
"jsdom": "^28.1.0",
"json-diff-ts": "^4.9.1",
"kubernetes-types": "^1.30.0",
"msw": "^2.12.10",
"msw-storybook-addon": "^2.0.6",
"openpgp": "^6.3.0",
"prettier": "^3.8.1",
"prettier-plugin-tailwindcss": "^0.7.2",
"storybook": "^10.2.15",
"storybook-vue3-router": "^7.0.0",
"tailwindcss": "^4.2.1",
"tw-animate-css": "^1.4.0",
"typescript": "^5.9.3",
"vite": "^7.3.1",
"vite-plugin-monaco-editor-esm": "^2.0.2",
"vite-plugin-vue-devtools": "^8.0.7",
"vitest": "^4.0.18",
"vue-component-type-helpers": "^3.2.5",
"vue-tsc": "^3.2.5",
"yaml": "^2.8.2"
},
"overrides": {
"vue-router": "^5.0.3"
}
}