gitextract_x5zzdzpb/ ├── .gitignore ├── Part1/ │ ├── .jshintrc │ ├── README.md │ ├── app/ │ │ ├── bundle.js │ │ ├── core/ │ │ │ ├── bootstrap.js │ │ │ └── vendor.js │ │ ├── index.html │ │ ├── index.js │ │ └── index.scss │ ├── package.json │ └── webpack.config.js ├── Part2/ │ ├── .jshintrc │ ├── README.md │ ├── app/ │ │ ├── bundle.js │ │ ├── core/ │ │ │ ├── bootstrap.js │ │ │ └── vendor.js │ │ ├── index.html │ │ ├── index.js │ │ └── index.scss │ ├── package.json │ └── webpack.config.js ├── Part3/ │ ├── .jshintrc │ ├── README.md │ ├── app/ │ │ ├── bundle.js │ │ ├── core/ │ │ │ ├── bootstrap.js │ │ │ ├── config/ │ │ │ │ └── production.js │ │ │ ├── layout.js │ │ │ ├── nav/ │ │ │ │ ├── nav.html │ │ │ │ ├── nav.js │ │ │ │ └── nav.scss │ │ │ └── vendor.js │ │ ├── index.html │ │ ├── index.js │ │ ├── index.json │ │ └── index.scss │ ├── package.json │ └── webpack.config.js └── README.md