I noticed this same error on a theme I was using. I changed
wp_enqueue_script('gigpress-js', plugins_url('scripts/gigpress.js', __FILE__), 'jquery');
To
wp_enqueue_script('gigpress-js', plugins_url('scripts/gigpress.js', __FILE__), array('jquery'));
This fixed the issue for us anyway. The deps should be an array according to the docs for wp_enqueue_script.