Add this code to functions.php to see all enqueued scripts
function inspect_scripts() {
global $wp_scripts;
foreach( $wp_scripts->queue as $handle ) :
echo $handle.'<br>';
endforeach;
}
add_action( 'wp_print_scripts', 'inspect_scripts' ); //show all enqueued scripts