Update node version and fix vue version

This commit is contained in:
Ramon Wenger 2022-09-28 18:22:58 +02:00
parent fd0ecb34f6
commit d16bfbb9c1
3 changed files with 5 additions and 5 deletions

View File

@ -1,2 +1,2 @@
nodejs 12.22.1 nodejs 14.20.1
python 3.8.13 python 3.8.13

View File

@ -131,8 +131,8 @@
"whatwg-fetch": "^3.0.0" "whatwg-fetch": "^3.0.0"
}, },
"engines": { "engines": {
"node": ">= 12.0.0", "node": ">= 14.x",
"npm": ">= 6.0.0" "yarn": ">= 1.x"
}, },
"browserslist": [ "browserslist": [
"> 1%", "> 1%",
@ -140,6 +140,6 @@
"not ie <= 8" "not ie <= 8"
], ],
"resolutions": { "resolutions": {
"graphql": "16.3.0" "vue": "2.6.14"
} }
} }

View File

@ -7,6 +7,6 @@
"build": "npm install --prefix client && npm run build --prefix client" "build": "npm install --prefix client && npm run build --prefix client"
}, },
"engines": { "engines": {
"node": "12.x" "node": "14.x"
} }
} }