mirror of
https://github.com/sysadminsmedia/homebox.git
synced 2025-12-25 14:59:21 +01:00
* feat: implement example of data table * feat: load item data into table * chore: begin switching dialogs * feat: implement old dialog for controlling headers and page size * feat: get table into relatively usable state * feat: enhance dropdown actions for multi-selection and CSV download * feat: enhance table cell and dropdown button styles for better usability * feat: json download for table * feat: add expanded row component for item details in data table * chore: add translation support * feat: restore table on home page * fix: oops need ids * feat: move card view to use tanstack to allow for pagination * feat: switch the items search to use ItemViewSelectable * fix: update pagination handling and improve button click logic * feat: improve selectable table * feat: add indeterminate to checkbox * feat: overhaul maintenance dialog to use new system and add maintenance options to table * feat: add label ids and location id to item patch api * feat: change location and labels in table view * feat: add quick actions preference and enable toggle in table settings * fix: lint * fix: remove sized 1 pages * fix: attempt to fix type error * fix: various issues * fix: remove * fix: refactor item fetching logic to use useAsyncData for improved reactivity and improve use confirm * fix: sort backend issues * fix: enhance CSV export functionality by escaping fields to prevent formula injection * fix: put aria sort on th not button * chore: update api types
83 lines
2.7 KiB
JSON
83 lines
2.7 KiB
JSON
{
|
|
"private": true,
|
|
"scripts": {
|
|
"build": "nuxt generate",
|
|
"dev": "nuxt dev",
|
|
"preview": "nuxt preview",
|
|
"postinstall": "nuxt prepare",
|
|
"lint": "eslint --ext \".ts,.js,.vue\" --ignore-pattern \"components/ui\" .",
|
|
"lint:fix": "eslint --ext \".ts,.js,.vue\" --ignore-pattern \"components/ui\" . --fix",
|
|
"lint:ci": "eslint --ext \".ts,.js,.vue\" --ignore-pattern \"components/ui\" . --max-warnings 1",
|
|
"typecheck": "pnpm nuxi typecheck --noEmit",
|
|
"test:ci": "TEST_SHUTDOWN_API_SERVER=true vitest --run --config ./test/vitest.config.ts",
|
|
"test:local": "TEST_SHUTDOWN_API_SERVER=false && vitest --run --config ./test/vitest.config.ts",
|
|
"test:watch": " TEST_SHUTDOWN_API_SERVER=false vitest --config ./test/vitest.config.ts"
|
|
},
|
|
"devDependencies": {
|
|
"@eslint/compat": "^1.3.2",
|
|
"@faker-js/faker": "^10.0.0",
|
|
"@iconify-json/mdi": "^1.2.3",
|
|
"@intlify/unplugin-vue-i18n": "^6.0.8",
|
|
"@nuxt/eslint": "^1.9.0",
|
|
"@playwright/test": "^1.55.0",
|
|
"@types/markdown-it": "^14.1.2",
|
|
"@types/semver": "^7.7.0",
|
|
"@vite-pwa/nuxt": "^1.0.4",
|
|
"@vue/runtime-core": "^3.5.20",
|
|
"eslint": "^9.34.0",
|
|
"eslint-config-prettier": "^10.1.8",
|
|
"eslint-plugin-prettier": "^5.5.4",
|
|
"eslint-plugin-tailwindcss": "^3.18.2",
|
|
"globals": "^16.3.0",
|
|
"h3": "^1.7.1",
|
|
"intl-messageformat": "^10.7.16",
|
|
"isomorphic-fetch": "^3.0.0",
|
|
"nuxt": "4.0.3",
|
|
"prettier": "^3.6.2",
|
|
"shadcn-nuxt": "2.2.0",
|
|
"typescript": "5.9.2",
|
|
"unplugin-icons": "^22.2.0",
|
|
"vite-plugin-eslint": "^1.8.1",
|
|
"vitest": "^3.2.4",
|
|
"vue-i18n": "^11.1.11",
|
|
"vue-tsc": "3.0.6"
|
|
},
|
|
"dependencies": {
|
|
"@mdit/plugin-img-size": "^0.22.2",
|
|
"@nuxtjs/color-mode": "^3.5.2",
|
|
"@nuxtjs/tailwindcss": "^6.14.0",
|
|
"@pinia/nuxt": "^0.11.2",
|
|
"@tailwindcss/aspect-ratio": "^0.4.2",
|
|
"@tailwindcss/forms": "^0.5.10",
|
|
"@tailwindcss/typography": "^0.5.16",
|
|
"@tanstack/vue-table": "^8.21.3",
|
|
"@vuepic/vue-datepicker": "^11.0.2",
|
|
"@vueuse/core": "^13.8.0",
|
|
"@vueuse/nuxt": "^13.8.0",
|
|
"@vueuse/router": "^13.8.0",
|
|
"@zxing/library": "^0.21.3",
|
|
"autoprefixer": "^10.4.21",
|
|
"class-variance-authority": "^0.7.1",
|
|
"clsx": "^2.1.1",
|
|
"date-fns": "^4.1.0",
|
|
"dompurify": "^3.2.6",
|
|
"fuzzysort": "^3.1.0",
|
|
"h3": "^1.15.4",
|
|
"http-proxy": "^1.18.1",
|
|
"lucide-vue-next": "^0.542.0",
|
|
"markdown-it": "^14.1.0",
|
|
"pinia": "^3.0.3",
|
|
"postcss": "^8.5.6",
|
|
"reka-ui": "^2.5.0",
|
|
"semver": "^7.7.2",
|
|
"tailwind-merge": "^3.3.1",
|
|
"tailwindcss": "^3.4.17",
|
|
"tailwindcss-animate": "^1.0.7",
|
|
"vaul-vue": "^0.4.1",
|
|
"vite": "^7.1.3",
|
|
"vue": "3.5.20",
|
|
"vue-router": "^4.5.1",
|
|
"vue-sonner": "^2.0.8"
|
|
}
|
|
}
|