From ad153c226e4a40443e809312745a81bc3b7afbc8 Mon Sep 17 00:00:00 2001 From: zenobit Date: Wed, 1 Apr 2026 03:00:32 +0200 Subject: [PATCH] fix(ci): add missing dependencies for build - prop-types: required by 12 component files using PropTypes - js-yaml: required by openapi spec route These dependencies were missing from package.json causing build failures. --- package.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/package.json b/package.json index 1c3524a9ac..16cb535847 100644 --- a/package.json +++ b/package.json @@ -97,6 +97,7 @@ "http-proxy-middleware": "^3.0.5", "https-proxy-agent": "^8.0.0", "jose": "^6.1.3", + "js-yaml": "^4.1.0", "lowdb": "^7.0.1", "monaco-editor": "^0.55.1", "next": "^16.0.10", @@ -115,7 +116,6 @@ "uuid": "^13.0.0", "wreq-js": "^2.0.1", "yazl": "^3.3.1", - "js-yaml": "^4.1.0", "zod": "^4.3.6", "zustand": "^5.0.10" }, @@ -139,6 +139,7 @@ "husky": "^9.1.7", "lint-staged": "^16.2.7", "prettier": "^3.8.1", + "prop-types": "^15.8.1", "tailwindcss": "^4", "typescript": "^5.9.3", "typescript-eslint": "^8.56.0",