forked from verdnatura/salix-front
refs #5668 update package.json
This commit is contained in:
parent
06645d941b
commit
7473a8a04c
File diff suppressed because it is too large
Load Diff
52
package.json
52
package.json
|
@ -15,40 +15,42 @@
|
||||||
"test:unit:ci": "vitest run"
|
"test:unit:ci": "vitest run"
|
||||||
},
|
},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@quasar/extras": "^1.15.11",
|
"@quasar/cli": "^2.2.1",
|
||||||
"axios": "^1.2.1",
|
"@quasar/extras": "^1.16.4",
|
||||||
"pinia": "^2.0.28",
|
"axios": "^1.4.0",
|
||||||
"quasar": "^2.11.7",
|
"chromium": "^3.0.3",
|
||||||
"validator": "^13.7.0",
|
"pinia": "^2.1.3",
|
||||||
"vue": "^3.2.45",
|
"quasar": "^2.12.0",
|
||||||
|
"validator": "^13.9.0",
|
||||||
|
"vue": "^3.3.4",
|
||||||
"vue-i18n": "^9.2.2",
|
"vue-i18n": "^9.2.2",
|
||||||
"vue-router": "^4.1.6",
|
"vue-router": "^4.2.1",
|
||||||
"vue-router-mock": "^0.1.9"
|
"vue-router-mock": "^0.2.0"
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@intlify/unplugin-vue-i18n": "^0.8.1",
|
"@intlify/unplugin-vue-i18n": "^0.8.1",
|
||||||
"@pinia/testing": "^0.0.14",
|
"@pinia/testing": "^0.1.2",
|
||||||
"@quasar/app-vite": "^1.2.1",
|
"@quasar/app-vite": "^1.4.3",
|
||||||
"@quasar/quasar-app-extension-testing-unit-vitest": "^0.2.1",
|
"@quasar/quasar-app-extension-testing-unit-vitest": "^0.3.0",
|
||||||
"@vue/test-utils": "^2.0.0",
|
"@vue/test-utils": "^2.3.2",
|
||||||
"autoprefixer": "^10.4.13",
|
"autoprefixer": "^10.4.14",
|
||||||
"cypress": "^12.2.0",
|
"cypress": "^12.13.0",
|
||||||
"eslint": "^8.30.0",
|
"eslint": "^8.41.0",
|
||||||
"eslint-config-prettier": "^8.5.0",
|
"eslint-config-prettier": "^8.8.0",
|
||||||
"eslint-plugin-cypress": "^2.12.1",
|
"eslint-plugin-cypress": "^2.13.3",
|
||||||
"eslint-plugin-vue": "^9.8.0",
|
"eslint-plugin-vue": "^9.14.1",
|
||||||
"postcss": "^8.4.20",
|
"postcss": "^8.4.23",
|
||||||
"prettier": "^2.8.1",
|
"prettier": "^2.8.8",
|
||||||
"vitest": "^0.26.3"
|
"vitest": "^0.31.1"
|
||||||
},
|
},
|
||||||
"engines": {
|
"engines": {
|
||||||
"node": "^18 || ^16 || ^14.19",
|
"node": "^20 || ^18 || ^16",
|
||||||
"npm": ">= 6.13.4",
|
"npm": ">= 8.1.2",
|
||||||
"yarn": ">= 1.21.1"
|
"yarn": ">= 1.21.1"
|
||||||
},
|
},
|
||||||
"overrides": {
|
"overrides": {
|
||||||
"@vitejs/plugin-vue": "^4.0.0",
|
"@vitejs/plugin-vue": "^4.0.0",
|
||||||
"vite": "^4.0.3",
|
"vite": "^4.3.5",
|
||||||
"vitest": "^0.26.3"
|
"vitest": "^0.31.1"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -11,7 +11,7 @@ const props = defineProps({
|
||||||
},
|
},
|
||||||
});
|
});
|
||||||
|
|
||||||
const item = computed(() => props.item);
|
const item = computed(() => props.item); // eslint-disable-line vue/no-dupe-keys
|
||||||
</script>
|
</script>
|
||||||
<template>
|
<template>
|
||||||
<QItem active-class="text-primary" :to="{ name: item.name }" clickable v-ripple>
|
<QItem active-class="text-primary" :to="{ name: item.name }" clickable v-ripple>
|
||||||
|
|
|
@ -18,7 +18,7 @@ const props = defineProps({
|
||||||
},
|
},
|
||||||
});
|
});
|
||||||
|
|
||||||
const item = computed(() => props.item);
|
const item = computed(() => props.item); // eslint-disable-line vue/no-dupe-keys
|
||||||
const isOpened = computed(() => {
|
const isOpened = computed(() => {
|
||||||
const { matched } = route;
|
const { matched } = route;
|
||||||
const { name } = item.value;
|
const { name } = item.value;
|
||||||
|
|
Loading…
Reference in New Issue