summaryrefslogtreecommitdiff
path: root/package.json
diff options
context:
space:
mode:
authorThorbjørn Lindeijer <bjorn@lindeijer.nl>2024-04-19 15:32:46 +0200
committerThorbjørn Lindeijer <bjorn@lindeijer.nl>2024-04-19 15:36:34 +0200
commitc1fe9f7bd87bd52e0191b314b835b1df9af46f33 (patch)
treef22cfbc3ea05452ba920a6da434dc1756c58feb6 /package.json
parente8c54e82e42f0eb5e96ff6412c42763637bd767d (diff)
downloadwebsite-master.tar.gz
website-master.tar.bz2
website-master.tar.xz
website-master.zip
Updated some stuff to avoid crashHEADmaster
On my system the website gave the following error on `yarn serve`: Error: error:0308010C:digital envelope routines::unsupported Updating the dependencies has resolved it for me. I tried to avoid dropping support for NodeJS 12, since our server runs 12.22.12-1nodesource1 according to Freeyorp. * vuejs/eslint-config-typescript 9.0.0 drops support for Node.js < v12.22.0, v13, >=v14 < v14.17.0, v15 * typescript-eslint/eslint-plugin 6.0.0 drops support for Node.js v12 and v14. * compression-webpack-plugin 10.0.0 would require Node.js 14.15.0
Diffstat (limited to 'package.json')
-rw-r--r--package.json29
1 files changed, 14 insertions, 15 deletions
diff --git a/package.json b/package.json
index d5e927a..edfb322 100644
--- a/package.json
+++ b/package.json
@@ -13,26 +13,25 @@
"webhint": "npx hint -c ./.hintrc http://127.0.0.1:8080/"
},
"dependencies": {
- "core-js": "^3.6.5",
+ "core-js": "^3.37.0",
"normalize.css": "^8.0.1",
- "vue": "^3.0.0",
+ "vue": "^3.4.0",
"vue-class-component": "^8.0.0-0",
- "vue-router": "^4.0.0-0"
+ "vue-router": "^4.3.2"
},
"devDependencies": {
"@gfx/zopfli": "^1.0.15",
- "@typescript-eslint/eslint-plugin": "^4.18.0",
- "@typescript-eslint/parser": "^4.18.0",
- "@vue/cli-plugin-babel": "~4.5.0",
- "@vue/cli-plugin-eslint": "~4.5.0",
- "@vue/cli-plugin-router": "~4.5.0",
- "@vue/cli-plugin-typescript": "~4.5.0",
- "@vue/cli-service": "~4.5.0",
- "@vue/compiler-sfc": "^3.0.0",
- "@vue/eslint-config-typescript": "^7.0.0",
- "compression-webpack-plugin": "^6.1.1",
- "eslint": "^6.7.2",
- "eslint-plugin-vue": "^7.0.0-0",
+ "@typescript-eslint/eslint-plugin": "^5.0.8",
+ "@typescript-eslint/parser": "^5.0.8",
+ "@vue/cli-plugin-babel": "~5.0.8",
+ "@vue/cli-plugin-eslint": "~5.0.8",
+ "@vue/cli-plugin-router": "~5.0.8",
+ "@vue/cli-plugin-typescript": "~5.0.8",
+ "@vue/cli-service": "~5.0.8",
+ "@vue/eslint-config-typescript": "^8.0.0",
+ "compression-webpack-plugin": "^9.0.0",
+ "eslint": "^7.0.0",
+ "eslint-plugin-vue": "^7.17.0",
"postcss-preset-env": "^6.7.0",
"typescript": "~4.1.5"
}