1
0
Fork 0
mirror of https://github.com/mealie-recipes/mealie.git synced 2025-08-05 13:35:23 +02:00
mealie/frontend/package.json

65 lines
1.8 KiB
JSON
Raw Normal View History

2020-12-24 16:37:38 -09:00
{
"name": "mealie",
2021-07-31 14:00:28 -08:00
"version": "1.0.0",
2020-12-24 16:37:38 -09:00
"private": true,
"scripts": {
2021-07-31 14:00:28 -08:00
"dev": "nuxt",
"build": "nuxt build",
"start": "nuxt start",
feat: Remove Explore URLs and make the normal URLs public (#2632) * add groupSlug to most routes * fixed more routing issues * fixed jank and incorrect routes * remove public explore links * remove unused groupSlug and explore routes * nuked explore pages * fixed public toolstore bug * fixed various routes missing group slug * restored public app header menu * fix janky login redirect * 404 recipe API call returns to login * removed unused explore layout * force redirect when using the wrong group slug * fixed dead admin links * removed unused middleware from earlier attempt * 🧹 * improve cookbooks sidebar fixed sidebar link not working fixed sidebar link target hide cookbooks header when there are none * added group slug to user * fix $auth typehints * vastly simplified groupSlug logic * allow logged-in users to view other groups * fixed some edgecases that bypassed isOwnGroup * fixed static home ref * 🧹 * fixed redirect logic * lint warning * removed group slug from group and user pages refactored all components to use route groupSlug or user group slug moved some group pages to recipe pages * fixed some bad types * 🧹 * moved groupSlug routes under /g/groupSlug * move /recipe/ to /r/ * fix backend url generation and metadata injection * moved shopping lists to root/other route fixes * changed shared from /recipes/ to /r/ * fixed 404 redirect not awaiting * removed unused import * fix doc links * fix public recipe setting not affecting public API * fixed backend tests * fix nuxt-generate command --------- Co-authored-by: Hayden <64056131+hay-kot@users.noreply.github.com>
2023-11-05 19:07:02 -06:00
"generate": "nuxt generate --spa",
Use composition API for more components, enable more type checking (#914) * Activate more linting rules from eslint and typescript * Properly add VForm as type information * Fix usage of native types * Fix more linting issues * Rename vuetify types file, add VTooltip * Fix some more typing problems * Use composition API for more components * Convert RecipeRating * Convert RecipeNutrition * Convert more components to composition API * Fix globals plugin for type checking * Add missing icon types * Fix vuetify types in Nuxt context * Use composition API for RecipeActionMenu * Convert error.vue to composition API * Convert RecipeContextMenu to composition API * Use more composition API and type checking in recipe/create * Convert AppButtonUpload to composition API * Fix some type checking in RecipeContextMenu * Remove unused components BaseAutoForm and BaseColorPicker * Convert RecipeCategoryTagDialog to composition API * Convert RecipeCardSection to composition API * Convert RecipeCategoryTagSelector to composition API * Properly import vuetify type definitions * Convert BaseButton to composition API * Convert AutoForm to composition API * Remove unused requests API file * Remove static routes from recipe API * Fix more type errors * Convert AppHeader to composition API, fixing some search bar focus problems * Convert RecipeDialogSearch to composition API * Update API types from pydantic models, handle undefined values * Improve more typing problems * Add types to other plugins * Properly type the CRUD API access * Fix typing of static image routes * Fix more typing stuff * Fix some more typing problems * Turn off more rules
2022-01-09 07:15:23 +01:00
"lint:js": "eslint --ext \".ts,.js,.vue\" --ignore-path .gitignore .",
"lint": "yarn lint:js",
"test": "vitest",
"test:ci": "vitest --watch=false"
2021-07-31 14:00:28 -08:00
},
"lint-staged": {
Use composition API for more components, enable more type checking (#914) * Activate more linting rules from eslint and typescript * Properly add VForm as type information * Fix usage of native types * Fix more linting issues * Rename vuetify types file, add VTooltip * Fix some more typing problems * Use composition API for more components * Convert RecipeRating * Convert RecipeNutrition * Convert more components to composition API * Fix globals plugin for type checking * Add missing icon types * Fix vuetify types in Nuxt context * Use composition API for RecipeActionMenu * Convert error.vue to composition API * Convert RecipeContextMenu to composition API * Use more composition API and type checking in recipe/create * Convert AppButtonUpload to composition API * Fix some type checking in RecipeContextMenu * Remove unused components BaseAutoForm and BaseColorPicker * Convert RecipeCategoryTagDialog to composition API * Convert RecipeCardSection to composition API * Convert RecipeCategoryTagSelector to composition API * Properly import vuetify type definitions * Convert BaseButton to composition API * Convert AutoForm to composition API * Remove unused requests API file * Remove static routes from recipe API * Fix more type errors * Convert AppHeader to composition API, fixing some search bar focus problems * Convert RecipeDialogSearch to composition API * Update API types from pydantic models, handle undefined values * Improve more typing problems * Add types to other plugins * Properly type the CRUD API access * Fix typing of static image routes * Fix more typing stuff * Fix some more typing problems * Turn off more rules
2022-01-09 07:15:23 +01:00
"*.{ts,js,vue}": "eslint"
2020-12-24 16:37:38 -09:00
},
"dependencies": {
2021-08-01 19:24:47 -08:00
"@adapttive/vue-markdown": "^4.0.1",
"@mdi/js": "^7.1.96",
"@nuxtjs/auth-next": "5.0.0-1667386184.dfbbb54",
2021-07-31 14:00:28 -08:00
"@nuxtjs/axios": "^5.13.6",
"@nuxtjs/i18n": "7.2.0",
2021-08-01 19:24:47 -08:00
"@nuxtjs/proxy": "^2.1.0",
"@nuxtjs/pwa": "3.2.0",
"@vueuse/core": "^9.9.0",
"core-js": "^3.27.0",
"date-fns": "^2.29.3",
"fuse.js": "^6.6.2",
"isomorphic-dompurify": "^1.0.0",
"nuxt": "^2.16.0",
"v-jsoneditor": "^1.4.5",
"vue-advanced-cropper": "^1.11.6",
2021-08-01 19:24:47 -08:00
"vuedraggable": "^2.24.3",
"vuetify": "^2.6.13"
2020-12-24 16:37:38 -09:00
},
"devDependencies": {
"@babel/eslint-parser": "^7.19.1",
"@nuxt/types": "^2.16.0",
2021-07-31 14:00:28 -08:00
"@nuxt/typescript-build": "^2.1.0",
"@nuxtjs/composition-api": "^0.33.1",
"@nuxtjs/eslint-config-typescript": "^12.0.0",
"@nuxtjs/eslint-module": "4.0.2",
"@nuxtjs/google-fonts": "2.0.0",
2021-07-31 14:00:28 -08:00
"@nuxtjs/vuetify": "^1.12.1",
"@types/sortablejs": "^1.15.0",
"eslint": "^8.30.0",
2022-06-17 13:34:22 -08:00
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-nuxt": "^4.0.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-vue": "9.10.0",
"lint-staged": "^13.1.0",
"nuxt-vite": "0.2.3",
"prettier": "^2.8.1",
"vitest": "^0.29.0"
},
"resolutions": {
"@nuxtjs/i18n/**/ufo": "0.7.9",
"vue-template-compiler": "2.7.14",
"vue-demi": "^0.13.11",
"postcss-preset-env": "^7.0.0",
"typescript": "^4.9.5"
2021-07-31 14:00:28 -08:00
}
}