From 6b48f6e0a7c250defb760c5b9309310d5d7f21e2 Mon Sep 17 00:00:00 2001 From: Andrei Pechkurov <37772591+puzpuzpuz@users.noreply.github.com> Date: Wed, 20 Mar 2024 22:52:34 +0300 Subject: [PATCH] Relax dependency versions (#75) --- package.json | 26 +++++++++++++------------- 1 file changed, 13 insertions(+), 13 deletions(-) diff --git a/package.json b/package.json index 8f6064c..3b49764 100644 --- a/package.json +++ b/package.json @@ -60,20 +60,20 @@ "logging" ], "dependencies": { - "uuid": "~9.0.1" + "uuid": "^9.0.1" }, "devDependencies": { - "@hapi/hapi": "~21.3.7", - "@types/node": "~16.18.91", - "express": "~4.19.0", - "fastify": "~4.26.2", - "fastifyv2": "npm:fastify@~2.15.3", - "jest": "~29.7.0", - "koa": "~2.15.1", - "koav1": "npm:koa@~1.7.0", - "standard": "~17.1.0", - "supertest": "~6.3.4", - "typescript": "~5.4.2", - "winston": "~3.12.0" + "@hapi/hapi": "^21.3.7", + "@types/node": "^16.18.91", + "express": "^4.19.0", + "fastify": "^4.26.2", + "fastifyv2": "npm:fastify@^2.15.3", + "jest": "^29.7.0", + "koa": "^2.15.1", + "koav1": "npm:koa@^1.7.0", + "standard": "^17.1.0", + "supertest": "^6.3.4", + "typescript": "^5.4.2", + "winston": "^3.12.0" } }