├── .gitignore ├── README.md ├── api ├── hotels │ ├── charlottesville.json │ ├── chicago.json │ └── newyork.json ├── locations.json ├── readme.md ├── routes │ └── locations.js ├── scripts │ └── hotel-json.js └── server.js ├── license ├── package.json ├── source ├── index.css ├── index.html └── index.js └── webpack.config.js /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | dist/ 3 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roomkey/front-end-code-challenge/HEAD/README.md -------------------------------------------------------------------------------- /api/hotels/charlottesville.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roomkey/front-end-code-challenge/HEAD/api/hotels/charlottesville.json -------------------------------------------------------------------------------- /api/hotels/chicago.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roomkey/front-end-code-challenge/HEAD/api/hotels/chicago.json -------------------------------------------------------------------------------- /api/hotels/newyork.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roomkey/front-end-code-challenge/HEAD/api/hotels/newyork.json -------------------------------------------------------------------------------- /api/locations.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roomkey/front-end-code-challenge/HEAD/api/locations.json -------------------------------------------------------------------------------- /api/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roomkey/front-end-code-challenge/HEAD/api/readme.md -------------------------------------------------------------------------------- /api/routes/locations.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roomkey/front-end-code-challenge/HEAD/api/routes/locations.js -------------------------------------------------------------------------------- /api/scripts/hotel-json.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roomkey/front-end-code-challenge/HEAD/api/scripts/hotel-json.js -------------------------------------------------------------------------------- /api/server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roomkey/front-end-code-challenge/HEAD/api/server.js -------------------------------------------------------------------------------- /license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roomkey/front-end-code-challenge/HEAD/license -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roomkey/front-end-code-challenge/HEAD/package.json -------------------------------------------------------------------------------- /source/index.css: -------------------------------------------------------------------------------- 1 | body { 2 | font-family: sans-serif; 3 | } 4 | -------------------------------------------------------------------------------- /source/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roomkey/front-end-code-challenge/HEAD/source/index.html -------------------------------------------------------------------------------- /source/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roomkey/front-end-code-challenge/HEAD/source/index.js -------------------------------------------------------------------------------- /webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roomkey/front-end-code-challenge/HEAD/webpack.config.js --------------------------------------------------------------------------------