From 397f345771555997e580b8dfe10a35b38b13fa99 Mon Sep 17 00:00:00 2001 From: Keith Irwin Date: Thu, 26 Nov 2015 15:59:29 -0500 Subject: [PATCH] Add missing dependencies Fixed these errors: Error: Cannot find module 'socket.io/node_modules/cookie' Error: Cannot find module 'socket.io/node_modules/connect' Error: Cannot find module 'socket.io/node_modules/redis' --- package.json | 3 +++ 1 file changed, 3 insertions(+) diff --git a/package.json b/package.json index 5bb1b88..b85dfbc 100644 --- a/package.json +++ b/package.json @@ -7,7 +7,10 @@ "dependencies": { "sails": "~0.10.3", "sails-disk": "~0.10.0", + "connect": "^3.4.0", + "cookie": "^0.2.3", "rc": "~0.5.0", + "redis": "^2.4.1", "include-all": "~0.1.3", "ejs": "~0.8.4", "grunt": "0.4.2",