From c156187babb2871127b96dc1ca9f35d4df68227d Mon Sep 17 00:00:00 2001 From: Alasdair Smith Date: Wed, 31 Jan 2018 12:30:39 +0000 Subject: [PATCH] Remove unused contentful dependency This package is unused, and was causing problems with installing babel. Because it dependended on an older version of babel, and was interpreted by npm first (as it is a regular dep), the older version of babel would be "hoisted" to the top level of node_modules Then when latest versions of babel are installed they would be interpreted second and thus would nest their dependencies within their own node_modules, filling the disk with unnecessary copies of core-js. Removing the unnecessary dep solves these problems --- services/web/package.json | 1 - 1 file changed, 1 deletion(-) diff --git a/services/web/package.json b/services/web/package.json index 56c932e6ad..b9d8a339a6 100644 --- a/services/web/package.json +++ b/services/web/package.json @@ -30,7 +30,6 @@ "body-parser": "^1.13.1", "bufferedstream": "1.6.0", "connect-redis": "^3.1.0", - "contentful": "^3.3.14", "cookie": "^0.2.3", "cookie-parser": "1.3.5", "csurf": "^1.8.3",