├── .gitignore ├── README.md ├── bot.js ├── config.js ├── models ├── product.js └── user.js └── package.json /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorakaps/Amazon-Flipkart-Price-Drop-Alert/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorakaps/Amazon-Flipkart-Price-Drop-Alert/HEAD/README.md -------------------------------------------------------------------------------- /bot.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorakaps/Amazon-Flipkart-Price-Drop-Alert/HEAD/bot.js -------------------------------------------------------------------------------- /config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorakaps/Amazon-Flipkart-Price-Drop-Alert/HEAD/config.js -------------------------------------------------------------------------------- /models/product.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorakaps/Amazon-Flipkart-Price-Drop-Alert/HEAD/models/product.js -------------------------------------------------------------------------------- /models/user.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorakaps/Amazon-Flipkart-Price-Drop-Alert/HEAD/models/user.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorakaps/Amazon-Flipkart-Price-Drop-Alert/HEAD/package.json --------------------------------------------------------------------------------