Skip to content

Commit

Permalink
Update npm packages to latest (#409)
Browse files Browse the repository at this point in the history
* REmove version attrib that is no longer valid

* Update to latest packages still supporting vue2

* Generate from packages.json updates

* Use a newer version of node that is still compatioble with packages
supporting vue2
  • Loading branch information
uhurusurfa authored Dec 15, 2024
1 parent 187ada5 commit 52afdc8
Show file tree
Hide file tree
Showing 4 changed files with 3,242 additions and 5,988 deletions.
2 changes: 1 addition & 1 deletion Dockerfile_WebUI
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM node:16-alpine AS web-builder
FROM node:21-alpine AS web-builder
RUN npm install -g --force yarn
COPY ./WebUI /usr/src/webui
WORKDIR /usr/src/webui
Expand Down
32 changes: 17 additions & 15 deletions WebUI/package.json
Original file line number Diff line number Diff line change
@@ -1,21 +1,21 @@
{
"name": "openas2ui",
"version": "0.1.0",
"version": "0.2.0",
"private": true,
"scripts": {
"serve": "vue-cli-service serve",
"build": "vue-cli-service build",
"lint": "vue-cli-service lint"
},
"dependencies": {
"axios": "^1.6.0",
"bootstrap": "^5.1.3",
"bootstrap-vue": "^2.22.0",
"chart.js": "^3.7.1",
"core-js": "^2.6.5",
"highcharts": "^10.1.0",
"axios": "^1.7.4",
"bootstrap": "^5.3.3",
"bootstrap-vue": "^2.23.1",
"chart.js": "^4.4.7",
"core-js": "^3.3.9",
"highcharts": "^12.0.2",
"jspdf": "^2.5.1",
"jspdf-autotable": "^3.5.24",
"jspdf-autotable": "^3.8.4",
"lodash": "^4.17.21",
"moment": "^2.29.3",
"moment-timezone": "^0.5.35",
Expand All @@ -34,12 +34,12 @@
"yarn": "^1.22.17"
},
"devDependencies": {
"@babel/eslint-parser": "^7.0.1",
"@vue/cli-plugin-babel": "^3.11.0",
"@vue/cli-plugin-eslint": "^3.11.0",
"@vue/cli-service": "^3.11.0",
"eslint": "^5.16.0",
"eslint-plugin-vue": "^5.0.0",
"@babel/eslint-parser": "^7.25.9",
"@vue/cli-plugin-babel": "^5.0.8",
"@vue/cli-plugin-eslint": "^5.0.8",
"@vue/cli-service": "^5.0.8",
"eslint": "^8.57.0",
"eslint-plugin-vue": "^9.32.0",
"sass": "^1.32.0",
"sass-loader": "^10.0.0",
"vue-template-compiler": "^2.6.10"
Expand All @@ -52,7 +52,9 @@
"no-undef": "off",
"vue/require-v-for-key": "off",
"vue/no-unused-vars": "off",
"vue/valid-v-model": "off"
"vue/valid-v-model": "off",
"vue/no-mutating-props": "off",
"vue/multi-word-component-names": "off"
},
"env": {
"node": true
Expand Down
Loading

0 comments on commit 52afdc8

Please sign in to comment.