mealie/frontend/package.json

60 lines
1.7 KiB
JSON
Raw Normal View History

2020-12-25 01:37:38 +00:00
{
"name": "mealie",
2021-07-31 22:00:28 +00:00
"version": "1.0.0",
2020-12-25 01:37:38 +00:00
"private": true,
"scripts": {
2021-07-31 22:00:28 +00:00
"dev": "nuxt",
"build": "nuxt build",
"start": "nuxt start",
"generate": "nuxt generate",
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 06:15:23 +00: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 22:00:28 +00: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 06:15:23 +00:00
"*.{ts,js,vue}": "eslint"
2020-12-25 01:37:38 +00:00
},
"dependencies": {
2021-08-02 03:24:47 +00:00
"@adapttive/vue-markdown": "^4.0.1",
"@mdi/js": "^7.0.96",
"@nuxtjs/auth-next": "5.0.0-1624817847.21691f1",
2021-07-31 22:00:28 +00:00
"@nuxtjs/axios": "^5.13.6",
"@nuxtjs/i18n": "7.2.0",
2021-08-02 03:24:47 +00:00
"@nuxtjs/proxy": "^2.1.0",
2021-07-31 22:00:28 +00:00
"@nuxtjs/pwa": "^3.3.5",
"@vue/composition-api": "^1.7.0",
"@vueuse/core": "^9.3.1",
"core-js": "^3.26.0",
"date-fns": "^2.29.3",
"fuse.js": "^6.6.2",
"isomorphic-dompurify": "^0.23.0",
"nuxt": "^2.15.8",
"v-jsoneditor": "^1.4.5",
2021-08-02 03:24:47 +00:00
"vuedraggable": "^2.24.3",
"vuetify": "^2.6.12"
2020-12-25 01:37:38 +00:00
},
"devDependencies": {
"@babel/eslint-parser": "^7.19.1",
2021-07-31 22:00:28 +00:00
"@nuxt/types": "^2.15.7",
"@nuxt/typescript-build": "^2.1.0",
"@nuxtjs/composition-api": "^0.32.0",
"@nuxtjs/eslint-config-typescript": "^11.0.0",
"@nuxtjs/eslint-module": "3.1.0",
"@nuxtjs/google-fonts": "2.0.0",
2021-07-31 22:00:28 +00:00
"@nuxtjs/vuetify": "^1.12.1",
"@types/sortablejs": "^1.15.0",
"@vue/runtime-dom": "^3.2.41",
"eslint": "^8.26.0",
2022-06-17 21:34:22 +00:00
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-nuxt": "^4.0.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-vue": "9.6.0",
"lint-staged": "^13.0.3",
"nuxt-vite": "0.2.3",
2022-06-17 21:34:22 +00:00
"prettier": "^2.7.1",
"vitest": "^0.24.3",
"vue2-script-setup-transform": "^0.3.5"
2021-07-31 22:00:28 +00:00
}
}