Files
akvorado/console/frontend/package.json
Vincent Bernat ddb4b4b06f console/frontend: remove "preview" command
This is not really needed. See
https://stackoverflow.com/questions/71703933/what-is-the-difference-between-vite-and-vite-preview

And document how to work on the frontend part more easily.
2025-05-19 15:22:17 +02:00

75 lines
2.3 KiB
JSON

{
"name": "akvorado",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "run-p type-check build-only",
"build-only": "vite build",
"type-check": "vue-tsc --noEmit -p tsconfig.vitest.json --composite false",
"lint": "eslint '{src/**/,}*.{js,ts,vue}'",
"format": "prettier --log-level warn --write '{src/**/,}*.{ts,js,vue,html}'",
"test": "vitest run",
"postinstall": "patch-package"
},
"dependencies": {
"@codemirror/autocomplete": "^6.0.1",
"@codemirror/commands": "^6.0.0",
"@codemirror/lint": "^6.0.0",
"@codemirror/state": "^6.0.0",
"@codemirror/view": "^6.0.0",
"@headlessui/vue": "^1.6.1",
"@heroicons/vue": "^1.0.6",
"@lezer/generator": "^1.0.0",
"@lezer/highlight": "^1.1.6",
"@vueuse/core": "^13.1.0",
"@vueuse/router": "^13.1.0",
"echarts": "^5.3.3",
"lodash-es": "^4.17.21",
"lz-string": "^1.4.4",
"sugar-date": "^2.0.6",
"uuid": "^11.0.2",
"vue": "^3.3.4",
"vue-echarts": "^7.0.3",
"vue-resizer": "^1.1.9",
"vue-router": "^4.0.16",
"vuedraggable": "^4.1.0"
},
"devDependencies": {
"@eslint/eslintrc": "^3.2.0",
"@eslint/js": "^9.15.0",
"@headlessui/tailwindcss": "^0.2.0",
"@tailwindcss/typography": "^0.5.2",
"@tailwindcss/vite": "^4.1.5",
"@tsconfig/node18": "^18.2.0",
"@types/jsdom": "^21.1.0",
"@types/lodash-es": "^4.17.6",
"@types/lz-string": "^1.3.34",
"@types/node": "^22.0.2",
"@types/uuid": "^10.0.0",
"@typescript-eslint/eslint-plugin": "^8.16.0",
"@vitejs/plugin-vue": "^5.0.3",
"@vitest/coverage-v8": "^3.0.4",
"@volar/vue-language-server": "^1.0.9",
"@vue/eslint-config-prettier": "^10.0.0",
"@vue/eslint-config-typescript": "^14.0.0",
"@vue/tsconfig": "^0.7.0",
"autoprefixer": "^10.4.7",
"eslint": "^9.10.0",
"eslint-plugin-prettier": "^5.0.0",
"eslint-plugin-vue": "^10.0.0",
"license-compliance": "^3.0.0",
"npm-run-all": "^4.1.5",
"patch-package": "^8.0.0",
"prettier": "^3.0.0",
"prettier-plugin-tailwindcss": "^0.6.5",
"tailwindcss": "^4.1.5",
"typescript": "^5.6.3",
"typescript-language-server": "^4.0.0",
"vite": "^6.0.1",
"vitest": "^3.0.4",
"vue-tsc": "^2.0.16"
}
}