gitextract_833fx47r/ ├── .gitignore ├── .nvmrc ├── LICENSE ├── README.md ├── package.json ├── public/ │ ├── assets/ │ │ ├── css/ │ │ │ ├── banner.css │ │ │ ├── index.css │ │ │ └── main.css │ │ ├── images/ │ │ │ └── favicon/ │ │ │ └── site.webmanifest.json │ │ ├── js/ │ │ │ ├── banner.js │ │ │ └── util/ │ │ │ ├── lazyloader.js │ │ │ └── perf.js │ │ └── vendor/ │ │ ├── chatty/ │ │ │ ├── bulky.js │ │ │ ├── chatty.css │ │ │ ├── chatty.js │ │ │ └── index.html │ │ └── fontello/ │ │ ├── LICENSE.txt │ │ ├── README.txt │ │ ├── config.json │ │ ├── css/ │ │ │ ├── animation.css │ │ │ ├── fontello-codes.css │ │ │ ├── fontello-embedded.css │ │ │ ├── fontello-ie7-codes.css │ │ │ ├── fontello-ie7.css │ │ │ └── fontello.css │ │ └── demo.html │ └── index.html ├── server/ │ └── server.js └── tools/ └── imageOptimizer.js