From f1174d3d88fc56f6c48a7bc1132944f19af23f40 Mon Sep 17 00:00:00 2001 From: Joakim Olsson Date: Wed, 6 Nov 2024 13:19:20 +0100 Subject: [PATCH] fix(package.json): update node engine and package manager Removes the old node engine specification and sets it to version 22. Updates the package manager to Yarn version 1.22.21 to ensure compatibility with the latest dependencies and enhance project stability. --- package.json | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/package.json b/package.json index ad2a1f5..6752515 100644 --- a/package.json +++ b/package.json @@ -1,9 +1,6 @@ { "name": "dancefinder-app", "version": "1.0.0", - "engines": { - "node": ">=20" - }, "author": "Joakim Olsson ", "private": true, "scripts": { @@ -63,5 +60,9 @@ "graphql-tag": "2.12.6", "pinia": "2.2.6", "subscriptions-transport-ws": "0.11.0" - } + }, + "engines": { + "node": "22" + }, + "packageManager": "yarn@1.22.21" }