Have you tried what is specified on the site you've linked ( https://www.npmjs.com/package/fancybox )?
// home.html
<div class="fancybox-me"><h2>Ain't this a fancy box?</h2></div>
// main.js (1)
var $ = require('jquery');
require('fancybox')($); <------- (2)
$(document).ready(function() {
$.fancybox.open($('.fancybox-me'));
});