mirror of
https://github.com/mealie-recipes/mealie.git
synced 2025-02-28 21:07:21 -08:00
* 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>
65 lines
1.8 KiB
JSON
65 lines
1.8 KiB
JSON
{
|
|
"name": "mealie",
|
|
"version": "1.0.0",
|
|
"private": true,
|
|
"scripts": {
|
|
"dev": "nuxt",
|
|
"build": "nuxt build",
|
|
"start": "nuxt start",
|
|
"generate": "nuxt generate --spa",
|
|
"lint:js": "eslint --ext \".ts,.js,.vue\" --ignore-path .gitignore .",
|
|
"lint": "yarn lint:js",
|
|
"test": "vitest",
|
|
"test:ci": "vitest --watch=false"
|
|
},
|
|
"lint-staged": {
|
|
"*.{ts,js,vue}": "eslint"
|
|
},
|
|
"dependencies": {
|
|
"@adapttive/vue-markdown": "^4.0.1",
|
|
"@mdi/js": "^7.1.96",
|
|
"@nuxtjs/auth-next": "5.0.0-1667386184.dfbbb54",
|
|
"@nuxtjs/axios": "^5.13.6",
|
|
"@nuxtjs/i18n": "7.2.0",
|
|
"@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",
|
|
"vuedraggable": "^2.24.3",
|
|
"vuetify": "^2.6.13"
|
|
},
|
|
"devDependencies": {
|
|
"@babel/eslint-parser": "^7.19.1",
|
|
"@nuxt/types": "^2.16.0",
|
|
"@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",
|
|
"@nuxtjs/vuetify": "^1.12.1",
|
|
"@types/sortablejs": "^1.15.0",
|
|
"eslint": "^8.30.0",
|
|
"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"
|
|
}
|
|
}
|