From cae4ed598295cbfed409b9f4f12137c3394fba4e Mon Sep 17 00:00:00 2001 From: Phil Date: Wed, 9 Oct 2019 19:19:54 +0200 Subject: [PATCH] Moved aws-sdk to devDependencies The module serverless-webpack would include the aws-sdk in the production package, because its a dependency in your module. This requires an extra deletion of the aws-sdk module in node_modules. To avoid this, just move it to devDependencies. --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index d788469..6f69e27 100644 --- a/package.json +++ b/package.json @@ -23,13 +23,13 @@ "url": "git+https://github.com/actionably/dashbot-logger.git" }, "dependencies": { - "aws-sdk": "^2.401.0", "generic-pool": "^3.6.1", "lodash": "^4.17.11", "pump": "^3.0.0", "uuid": "^3.3.2" }, "devDependencies": { + "aws-sdk": "^2.401.0", "eslint": "^5.13.0", "eslint-config-standard": "^12.0.0", "eslint-plugin-import": "^2.16.0",