From 9518cb36357cd36b4b75439ac74ba910faa9a217 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Samuel=20Bart=C3=ADk?= <63553146+sambartik@users.noreply.github.com> Date: Wed, 7 Sep 2022 15:14:04 +0200 Subject: [PATCH] fix(deps): do not list email-validator as a devDependency Because it was listed as a devDependency it got removed during a container build process causing module not found error. --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 05620696..50a0bfb7 100644 --- a/package.json +++ b/package.json @@ -50,6 +50,7 @@ "csurf": "1.11.0", "date-fns": "2.29.1", "email-templates": "9.0.0", + "email-validator": "2.0.4", "express": "4.18.1", "express-openapi-validator": "4.13.8", "express-rate-limit": "6.5.1", @@ -134,7 +135,6 @@ "copyfiles": "2.4.1", "cypress": "10.6.0", "cz-conventional-changelog": "3.3.0", - "email-validator": "2.0.4", "eslint": "8.22.0", "eslint-config-next": "12.2.5", "eslint-config-prettier": "8.5.0",