Add this as plugin
new webpack.ProvidePlugin({
$: "jquery",
jQuery: "jquery"
})
and you should be able to have jquery in your whole project.
If issue persists after adding the plugin, try restarting your nodejs server. Remember to install jquery using npm install --save jquery.