├── .gitignore ├── LICENSE ├── README.md ├── app.js ├── package.json ├── pokeScraper ├── csvToJsonV2.py ├── csvtojson.py ├── mongopokedex.json ├── pokedex.csv ├── pokedex.json ├── pokedexV2.csv ├── pokedexV2.json └── scraper.py ├── src ├── index.css ├── index.html ├── index.js └── pokedex.js └── yarn.lock /.gitignore: -------------------------------------------------------------------------------- 1 | /node_modules 2 | .env 3 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rchung95/PokedexVueJs/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rchung95/PokedexVueJs/HEAD/README.md -------------------------------------------------------------------------------- /app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rchung95/PokedexVueJs/HEAD/app.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rchung95/PokedexVueJs/HEAD/package.json -------------------------------------------------------------------------------- /pokeScraper/csvToJsonV2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rchung95/PokedexVueJs/HEAD/pokeScraper/csvToJsonV2.py -------------------------------------------------------------------------------- /pokeScraper/csvtojson.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rchung95/PokedexVueJs/HEAD/pokeScraper/csvtojson.py -------------------------------------------------------------------------------- /pokeScraper/mongopokedex.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rchung95/PokedexVueJs/HEAD/pokeScraper/mongopokedex.json -------------------------------------------------------------------------------- /pokeScraper/pokedex.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rchung95/PokedexVueJs/HEAD/pokeScraper/pokedex.csv -------------------------------------------------------------------------------- /pokeScraper/pokedex.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rchung95/PokedexVueJs/HEAD/pokeScraper/pokedex.json -------------------------------------------------------------------------------- /pokeScraper/pokedexV2.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rchung95/PokedexVueJs/HEAD/pokeScraper/pokedexV2.csv -------------------------------------------------------------------------------- /pokeScraper/pokedexV2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rchung95/PokedexVueJs/HEAD/pokeScraper/pokedexV2.json -------------------------------------------------------------------------------- /pokeScraper/scraper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rchung95/PokedexVueJs/HEAD/pokeScraper/scraper.py -------------------------------------------------------------------------------- /src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rchung95/PokedexVueJs/HEAD/src/index.css -------------------------------------------------------------------------------- /src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rchung95/PokedexVueJs/HEAD/src/index.html -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rchung95/PokedexVueJs/HEAD/src/index.js -------------------------------------------------------------------------------- /src/pokedex.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rchung95/PokedexVueJs/HEAD/src/pokedex.js -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rchung95/PokedexVueJs/HEAD/yarn.lock --------------------------------------------------------------------------------