Skip to content

Commit

Permalink
Upgrade dependencies (#19)
Browse files Browse the repository at this point in the history
* Remove unused extension

* Upgrade dependencies

* Access version and product name from process.env
  • Loading branch information
ChristophB authored Oct 8, 2024
1 parent 8ce5784 commit 07401c8
Show file tree
Hide file tree
Showing 4 changed files with 874 additions and 420 deletions.
3 changes: 1 addition & 2 deletions .devcontainer/devcontainer.json
Original file line number Diff line number Diff line change
Expand Up @@ -55,8 +55,7 @@
"esbenp.prettier-vscode",
"formulahendry.auto-rename-tag",
"sdras.vue-vscode-snippets",
"mutantdino.resourcemonitor",
"Vue.vscode-typescript-vue-plugin"
"mutantdino.resourcemonitor"
]
}
}
Expand Down
24 changes: 12 additions & 12 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,21 +23,21 @@
"deploy": "node deploy"
},
"dependencies": {
"@quasar/extras": "^1.16.8",
"axios": "^1.6.7",
"chart.js": "4.4.1",
"@quasar/extras": "^1.16.12",
"axios": "^1.7.7",
"chart.js": "4.4.4",
"chartjs-plugin-zoom": "2.0.1",
"pinia": "^2.1.7",
"qrcode.vue": "^3.4.1",
"quasar": "^2.14.0",
"vue": "^3.3.8",
"pinia": "2",
"qrcode.vue": "^3.5.0",
"quasar": "^2.17.0",
"vue": "3",
"vue-chart-3": "3.1.8",
"vue-i18n": "^9.7.0",
"vue-router": "^4.2.5"
"vue-i18n": "^10.0.4",
"vue-router": "4"
},
"devDependencies": {
"@babel/eslint-parser": "^7.23.3",
"@quasar/app-webpack": "^3.12.0",
"@quasar/app-webpack": "^3.14.0",
"@types/node": "^20.9.1",
"@typescript-eslint/eslint-plugin": "^6.11.0",
"@typescript-eslint/parser": "^6.11.0",
Expand All @@ -47,8 +47,8 @@
"eslint-plugin-vue": "^9.18.1",
"eslint-webpack-plugin": "^4.0.1",
"ftp-deploy": "^2.4.6",
"typescript": "^5.3.3",
"prettier": "^3.2.4"
"prettier": "^3.2.4",
"typescript": "^5.3.3"
},
"engines": {
"node": ">= 20",
Expand Down
5 changes: 2 additions & 3 deletions src/layouts/MainLayout.vue
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,6 @@
<script lang="ts">
import { defineComponent } from 'vue'
import LanguageSelector from 'components/LanguageSelector.vue'
import { version, productName } from '../../package.json'
import { useI18n } from 'vue-i18n'
export default defineComponent({
Expand All @@ -46,8 +45,8 @@ export default defineComponent({
t,
imprintUrl: process.env.VUE_APP_IMPRINT_URL,
copyrightNotice: process.env.VUE_APP_COPYRIGHT_NOTICE,
version: version,
productName: productName
version: process.env.npm_package_version,
productName: process.env.npm_package_productName
}
}
})
Expand Down
Loading

0 comments on commit 07401c8

Please sign in to comment.