├── .eslintrc.js ├── .gitignore ├── .travis.yml ├── .vscode └── launch.json ├── README.md ├── docker-compose.yml ├── e-Commerce-Admin ├── Dockerfile ├── README.md ├── app │ ├── config │ │ ├── email.ts │ │ └── environments │ │ │ ├── dev.ts │ │ │ ├── qa.ts │ │ │ └── test.ts │ ├── controller │ │ └── UserController.ts │ ├── events │ │ └── notification.ts │ ├── global │ │ └── templates │ │ │ ├── emails │ │ │ ├── assets │ │ │ │ └── images │ │ │ │ │ └── logo.png │ │ │ ├── password-reset-email │ │ │ │ ├── html.pug │ │ │ │ └── style.css │ │ │ └── welcome-email │ │ │ │ ├── html.pug │ │ │ │ └── style.css │ │ │ └── response │ │ │ └── index.ts │ ├── helper │ │ ├── bcrypt.ts │ │ ├── email.ts │ │ ├── errorHandler.ts │ │ ├── logger.ts │ │ ├── responseTemplate.ts │ │ └── twillo.ts │ ├── lib │ │ ├── logger.ts │ │ ├── mongoose.ts │ │ └── requestValidator.ts │ ├── middleware │ │ ├── authMiddleware.ts │ │ └── requestValidator.ts │ ├── models │ │ ├── plugin │ │ │ └── plugin.ts │ │ └── user.ts │ ├── routes.ts │ ├── routes │ │ ├── defaultRoutes.ts │ │ ├── provider │ │ │ ├── Facebook.ts │ │ │ ├── Google.ts │ │ │ ├── Linkedin.ts │ │ │ ├── Locale.ts │ │ │ └── Twitter.ts │ │ ├── routes.ts │ │ └── userRoutes.ts │ ├── seed │ │ ├── seedUsers.ts │ │ └── seedVehicle.ts │ ├── transformer │ │ └── userTransformer.ts │ └── types │ │ ├── global.d.ts │ │ └── vendor.d.ts ├── env.sh ├── express.ts ├── package.json ├── public │ ├── images │ │ ├── cinema.jpg │ │ └── favicon.ico │ ├── javascripts │ │ └── script.js │ └── style.scss ├── server.ts ├── tsconfig.json ├── tslint.json └── uploads │ ├── documents │ └── .gitkeep │ └── profile │ └── .gitkeep ├── e-Commerce-Auth ├── Dockerfile ├── README.md ├── app │ ├── config │ │ ├── email.ts │ │ └── environments │ │ │ ├── dev.ts │ │ │ ├── qa.ts │ │ │ └── test.ts │ ├── controller │ │ └── UserController.ts │ ├── events │ │ └── notification.ts │ ├── global │ │ └── templates │ │ │ ├── emails │ │ │ ├── assets │ │ │ │ └── images │ │ │ │ │ └── logo.png │ │ │ ├── password-reset-email │ │ │ │ ├── html.pug │ │ │ │ └── style.css │ │ │ └── welcome-email │ │ │ │ ├── html.pug │ │ │ │ └── style.css │ │ │ └── response │ │ │ └── index.ts │ ├── helper │ │ ├── bcrypt.ts │ │ ├── email.ts │ │ ├── errorHandler.ts │ │ ├── logger.ts │ │ ├── responseTemplate.ts │ │ └── twillo.ts │ ├── lib │ │ ├── logger.ts │ │ ├── mongoose.ts │ │ └── requestValidator.ts │ ├── middleware │ │ ├── authMiddleware.ts │ │ └── requestValidator.ts │ ├── models │ │ ├── plugin │ │ │ └── plugin.ts │ │ └── user.ts │ ├── routes.ts │ ├── routes │ │ ├── defaultRoutes.ts │ │ ├── provider │ │ │ ├── Facebook.ts │ │ │ ├── Google.ts │ │ │ ├── Linkedin.ts │ │ │ ├── Locale.ts │ │ │ └── Twitter.ts │ │ ├── routes.ts │ │ └── userRoutes.ts │ ├── seed │ │ ├── seedUsers.ts │ │ └── seedVehicle.ts │ ├── transformer │ │ └── userTransformer.ts │ └── types │ │ ├── global.d.ts │ │ └── vendor.d.ts ├── env.sh ├── express.ts ├── package.json ├── public │ ├── images │ │ ├── cinema.jpg │ │ └── favicon.ico │ ├── javascripts │ │ └── script.js │ └── style.scss ├── server.ts ├── tsconfig.json ├── tslint.json └── uploads │ ├── documents │ └── .gitkeep │ └── profile │ └── .gitkeep ├── e-Commerce-Cart ├── .sequelizerc ├── Dockerfile ├── README.md ├── app │ ├── config │ │ └── environments │ │ │ ├── dev.ts │ │ │ ├── qa.ts │ │ │ └── test.ts │ ├── events │ │ └── processEvent.ts │ ├── helper │ │ ├── errorHandler.ts │ │ ├── errors.ts │ │ ├── logger.ts │ │ └── responseTemplate.ts │ ├── lib │ │ ├── logger.ts │ │ ├── mysql.ts │ │ └── requestValidator.ts │ ├── middleware │ │ └── requestValidator.ts │ ├── models │ │ └── data │ │ │ └── cart.ts │ ├── routes.ts │ ├── routes │ │ └── defaultRoutes.ts │ └── types │ │ ├── global.d.ts │ │ └── vendor.d.ts ├── config │ └── config.js ├── env.sh ├── express.ts ├── mysql │ └── schema.sql ├── package.json ├── public │ ├── images │ │ ├── cinema.jpg │ │ └── favicon.ico │ ├── javascripts │ │ └── script.js │ └── style.scss ├── server.ts ├── tsconfig.json ├── tslint.json └── uploads │ ├── documents │ └── .gitkeep │ └── profile │ └── .gitkeep ├── e-Commerce-Client ├── Dockerfile ├── README.md ├── env.sh ├── firebase.json ├── package.json ├── public │ ├── favicon.ico │ ├── index.html │ ├── manifest.json │ └── normalize.css └── src │ ├── api │ └── index.js │ ├── components │ ├── App │ │ └── index.js │ ├── Checkbox │ │ └── index.js │ ├── FloatCart │ │ ├── CartProduct │ │ │ └── index.js │ │ ├── index.js │ │ └── style.scss │ ├── Selectbox │ │ └── index.js │ ├── Shelf │ │ ├── Filter │ │ │ ├── index.js │ │ │ └── style.scss │ │ ├── ProductList │ │ │ ├── Product │ │ │ │ └── index.js │ │ │ └── index.js │ │ ├── ShelfHeader │ │ │ └── index.js │ │ ├── Sort │ │ │ └── index.js │ │ ├── index.js │ │ └── style.scss │ ├── Spinner │ │ ├── index.js │ │ └── style.scss │ └── Thumb │ │ └── index.js │ ├── config │ ├── index.js │ └── server.js │ ├── index.js │ ├── index.scss │ ├── layout │ ├── Auth.js │ └── Public.js │ ├── services │ ├── auth │ │ ├── Login.js │ │ ├── Logout.js │ │ ├── Register.js │ │ ├── ResetPassword.js │ │ ├── ValidateToken.js │ │ ├── action.js │ │ ├── actionTypes.js │ │ ├── auth.scss │ │ └── reducer.js │ ├── cart │ │ ├── actionTypes.js │ │ ├── actions.js │ │ └── reducer.js │ ├── filters │ │ ├── actionTypes.js │ │ ├── actions.js │ │ └── reducer.js │ ├── reducers.js │ ├── shelf │ │ ├── actionTypes.js │ │ ├── actions.js │ │ └── reducer.js │ ├── sort │ │ ├── actionTypes.js │ │ ├── actions.js │ │ └── reducer.js │ ├── store.js │ ├── total │ │ ├── actionTypes.js │ │ ├── actions.js │ │ └── reducer.js │ └── util.js │ ├── setupTests.js │ ├── static │ ├── bag-icon.png │ ├── products │ │ ├── 100_1.jpg │ │ ├── 100_2.jpg │ │ ├── 101_1.jpg │ │ ├── 101_2.jpg │ │ ├── 10412368723880252_1.jpg │ │ ├── 10412368723880252_2.jpg │ │ ├── 10547961582846888_1.jpg │ │ ├── 10547961582846888_2.jpg │ │ ├── 10686354557628304_1.jpg │ │ ├── 10686354557628304_2.jpg │ │ ├── 11033926921508488_1.jpg │ │ ├── 11033926921508488_2.jpg │ │ ├── 11600983276356164_1.jpg │ │ ├── 11600983276356164_2.jpg │ │ ├── 11854078013954528_1.jpg │ │ ├── 11854078013954528_2.jpg │ │ ├── 12064273040195392_1.jpg │ │ ├── 12064273040195392_2.jpg │ │ ├── 18532669286405344_1.jpg │ │ ├── 18532669286405344_2.jpg │ │ ├── 18644119330491310_1.jpg │ │ ├── 18644119330491310_2.jpg │ │ ├── 27250082398145996_1.jpg │ │ ├── 27250082398145996_2.jpg │ │ ├── 39876704341265610_1.jpg │ │ ├── 39876704341265610_2.jpg │ │ ├── 51498472915966370_1.jpg │ │ ├── 51498472915966370_2.jpg │ │ ├── 5619496040738316_1.jpg │ │ ├── 5619496040738316_2.jpg │ │ ├── 6090484789343891_1.jpg │ │ ├── 6090484789343891_2.jpg │ │ ├── 8552515751438644_1.jpg │ │ ├── 8552515751438644_2.jpg │ │ ├── 876661122392077_1.jpg │ │ ├── 876661122392077_2.jpg │ │ ├── 9197907543445676_1.jpg │ │ └── 9197907543445676_2.jpg │ └── sprite_delete-icon.png │ └── util │ ├── helper │ └── index.js │ └── middleware │ ├── auth.js │ └── index.js ├── proxy ├── default.conf ├── hosts └── ssl │ ├── pac.crt │ └── pac.key └── screens ├── 02.png └── 03.png /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkssharma/e-CommerseHub/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkssharma/e-CommerseHub/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkssharma/e-CommerseHub/HEAD/.travis.yml -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkssharma/e-CommerseHub/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkssharma/e-CommerseHub/HEAD/README.md -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkssharma/e-CommerseHub/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /e-Commerce-Admin/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkssharma/e-CommerseHub/HEAD/e-Commerce-Admin/Dockerfile -------------------------------------------------------------------------------- /e-Commerce-Admin/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkssharma/e-CommerseHub/HEAD/e-Commerce-Admin/README.md -------------------------------------------------------------------------------- /e-Commerce-Admin/app/config/email.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkssharma/e-CommerseHub/HEAD/e-Commerce-Admin/app/config/email.ts -------------------------------------------------------------------------------- /e-Commerce-Admin/app/config/environments/dev.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkssharma/e-CommerseHub/HEAD/e-Commerce-Admin/app/config/environments/dev.ts -------------------------------------------------------------------------------- /e-Commerce-Admin/app/config/environments/qa.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkssharma/e-CommerseHub/HEAD/e-Commerce-Admin/app/config/environments/qa.ts -------------------------------------------------------------------------------- /e-Commerce-Admin/app/config/environments/test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkssharma/e-CommerseHub/HEAD/e-Commerce-Admin/app/config/environments/test.ts -------------------------------------------------------------------------------- /e-Commerce-Admin/app/controller/UserController.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkssharma/e-CommerseHub/HEAD/e-Commerce-Admin/app/controller/UserController.ts -------------------------------------------------------------------------------- /e-Commerce-Admin/app/events/notification.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkssharma/e-CommerseHub/HEAD/e-Commerce-Admin/app/events/notification.ts -------------------------------------------------------------------------------- /e-Commerce-Admin/app/global/templates/emails/assets/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkssharma/e-CommerseHub/HEAD/e-Commerce-Admin/app/global/templates/emails/assets/images/logo.png -------------------------------------------------------------------------------- /e-Commerce-Admin/app/global/templates/emails/password-reset-email/html.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkssharma/e-CommerseHub/HEAD/e-Commerce-Admin/app/global/templates/emails/password-reset-email/html.pug -------------------------------------------------------------------------------- /e-Commerce-Admin/app/global/templates/emails/password-reset-email/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkssharma/e-CommerseHub/HEAD/e-Commerce-Admin/app/global/templates/emails/password-reset-email/style.css -------------------------------------------------------------------------------- /e-Commerce-Admin/app/global/templates/emails/welcome-email/html.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkssharma/e-CommerseHub/HEAD/e-Commerce-Admin/app/global/templates/emails/welcome-email/html.pug -------------------------------------------------------------------------------- /e-Commerce-Admin/app/global/templates/emails/welcome-email/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkssharma/e-CommerseHub/HEAD/e-Commerce-Admin/app/global/templates/emails/welcome-email/style.css -------------------------------------------------------------------------------- /e-Commerce-Admin/app/global/templates/response/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkssharma/e-CommerseHub/HEAD/e-Commerce-Admin/app/global/templates/response/index.ts -------------------------------------------------------------------------------- /e-Commerce-Admin/app/helper/bcrypt.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkssharma/e-CommerseHub/HEAD/e-Commerce-Admin/app/helper/bcrypt.ts -------------------------------------------------------------------------------- /e-Commerce-Admin/app/helper/email.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkssharma/e-CommerseHub/HEAD/e-Commerce-Admin/app/helper/email.ts -------------------------------------------------------------------------------- /e-Commerce-Admin/app/helper/errorHandler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkssharma/e-CommerseHub/HEAD/e-Commerce-Admin/app/helper/errorHandler.ts -------------------------------------------------------------------------------- /e-Commerce-Admin/app/helper/logger.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkssharma/e-CommerseHub/HEAD/e-Commerce-Admin/app/helper/logger.ts -------------------------------------------------------------------------------- /e-Commerce-Admin/app/helper/responseTemplate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkssharma/e-CommerseHub/HEAD/e-Commerce-Admin/app/helper/responseTemplate.ts -------------------------------------------------------------------------------- /e-Commerce-Admin/app/helper/twillo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkssharma/e-CommerseHub/HEAD/e-Commerce-Admin/app/helper/twillo.ts -------------------------------------------------------------------------------- /e-Commerce-Admin/app/lib/logger.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkssharma/e-CommerseHub/HEAD/e-Commerce-Admin/app/lib/logger.ts -------------------------------------------------------------------------------- /e-Commerce-Admin/app/lib/mongoose.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkssharma/e-CommerseHub/HEAD/e-Commerce-Admin/app/lib/mongoose.ts -------------------------------------------------------------------------------- /e-Commerce-Admin/app/lib/requestValidator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkssharma/e-CommerseHub/HEAD/e-Commerce-Admin/app/lib/requestValidator.ts -------------------------------------------------------------------------------- /e-Commerce-Admin/app/middleware/authMiddleware.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkssharma/e-CommerseHub/HEAD/e-Commerce-Admin/app/middleware/authMiddleware.ts -------------------------------------------------------------------------------- /e-Commerce-Admin/app/middleware/requestValidator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkssharma/e-CommerseHub/HEAD/e-Commerce-Admin/app/middleware/requestValidator.ts -------------------------------------------------------------------------------- /e-Commerce-Admin/app/models/plugin/plugin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkssharma/e-CommerseHub/HEAD/e-Commerce-Admin/app/models/plugin/plugin.ts -------------------------------------------------------------------------------- /e-Commerce-Admin/app/models/user.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkssharma/e-CommerseHub/HEAD/e-Commerce-Admin/app/models/user.ts -------------------------------------------------------------------------------- /e-Commerce-Admin/app/routes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkssharma/e-CommerseHub/HEAD/e-Commerce-Admin/app/routes.ts -------------------------------------------------------------------------------- /e-Commerce-Admin/app/routes/defaultRoutes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkssharma/e-CommerseHub/HEAD/e-Commerce-Admin/app/routes/defaultRoutes.ts -------------------------------------------------------------------------------- /e-Commerce-Admin/app/routes/provider/Facebook.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkssharma/e-CommerseHub/HEAD/e-Commerce-Admin/app/routes/provider/Facebook.ts -------------------------------------------------------------------------------- /e-Commerce-Admin/app/routes/provider/Google.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkssharma/e-CommerseHub/HEAD/e-Commerce-Admin/app/routes/provider/Google.ts -------------------------------------------------------------------------------- /e-Commerce-Admin/app/routes/provider/Linkedin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkssharma/e-CommerseHub/HEAD/e-Commerce-Admin/app/routes/provider/Linkedin.ts -------------------------------------------------------------------------------- /e-Commerce-Admin/app/routes/provider/Locale.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkssharma/e-CommerseHub/HEAD/e-Commerce-Admin/app/routes/provider/Locale.ts -------------------------------------------------------------------------------- /e-Commerce-Admin/app/routes/provider/Twitter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkssharma/e-CommerseHub/HEAD/e-Commerce-Admin/app/routes/provider/Twitter.ts -------------------------------------------------------------------------------- /e-Commerce-Admin/app/routes/routes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkssharma/e-CommerseHub/HEAD/e-Commerce-Admin/app/routes/routes.ts -------------------------------------------------------------------------------- /e-Commerce-Admin/app/routes/userRoutes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkssharma/e-CommerseHub/HEAD/e-Commerce-Admin/app/routes/userRoutes.ts -------------------------------------------------------------------------------- /e-Commerce-Admin/app/seed/seedUsers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkssharma/e-CommerseHub/HEAD/e-Commerce-Admin/app/seed/seedUsers.ts -------------------------------------------------------------------------------- /e-Commerce-Admin/app/seed/seedVehicle.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkssharma/e-CommerseHub/HEAD/e-Commerce-Admin/app/seed/seedVehicle.ts -------------------------------------------------------------------------------- /e-Commerce-Admin/app/transformer/userTransformer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkssharma/e-CommerseHub/HEAD/e-Commerce-Admin/app/transformer/userTransformer.ts -------------------------------------------------------------------------------- /e-Commerce-Admin/app/types/global.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkssharma/e-CommerseHub/HEAD/e-Commerce-Admin/app/types/global.d.ts -------------------------------------------------------------------------------- /e-Commerce-Admin/app/types/vendor.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkssharma/e-CommerseHub/HEAD/e-Commerce-Admin/app/types/vendor.d.ts -------------------------------------------------------------------------------- /e-Commerce-Admin/env.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkssharma/e-CommerseHub/HEAD/e-Commerce-Admin/env.sh -------------------------------------------------------------------------------- /e-Commerce-Admin/express.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkssharma/e-CommerseHub/HEAD/e-Commerce-Admin/express.ts -------------------------------------------------------------------------------- /e-Commerce-Admin/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkssharma/e-CommerseHub/HEAD/e-Commerce-Admin/package.json -------------------------------------------------------------------------------- /e-Commerce-Admin/public/images/cinema.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkssharma/e-CommerseHub/HEAD/e-Commerce-Admin/public/images/cinema.jpg -------------------------------------------------------------------------------- /e-Commerce-Admin/public/images/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkssharma/e-CommerseHub/HEAD/e-Commerce-Admin/public/images/favicon.ico -------------------------------------------------------------------------------- /e-Commerce-Admin/public/javascripts/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkssharma/e-CommerseHub/HEAD/e-Commerce-Admin/public/javascripts/script.js -------------------------------------------------------------------------------- /e-Commerce-Admin/public/style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkssharma/e-CommerseHub/HEAD/e-Commerce-Admin/public/style.scss -------------------------------------------------------------------------------- /e-Commerce-Admin/server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkssharma/e-CommerseHub/HEAD/e-Commerce-Admin/server.ts -------------------------------------------------------------------------------- /e-Commerce-Admin/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkssharma/e-CommerseHub/HEAD/e-Commerce-Admin/tsconfig.json -------------------------------------------------------------------------------- /e-Commerce-Admin/tslint.json: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /e-Commerce-Admin/uploads/documents/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /e-Commerce-Admin/uploads/profile/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /e-Commerce-Auth/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkssharma/e-CommerseHub/HEAD/e-Commerce-Auth/Dockerfile -------------------------------------------------------------------------------- /e-Commerce-Auth/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkssharma/e-CommerseHub/HEAD/e-Commerce-Auth/README.md -------------------------------------------------------------------------------- /e-Commerce-Auth/app/config/email.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkssharma/e-CommerseHub/HEAD/e-Commerce-Auth/app/config/email.ts -------------------------------------------------------------------------------- /e-Commerce-Auth/app/config/environments/dev.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkssharma/e-CommerseHub/HEAD/e-Commerce-Auth/app/config/environments/dev.ts -------------------------------------------------------------------------------- /e-Commerce-Auth/app/config/environments/qa.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkssharma/e-CommerseHub/HEAD/e-Commerce-Auth/app/config/environments/qa.ts -------------------------------------------------------------------------------- /e-Commerce-Auth/app/config/environments/test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkssharma/e-CommerseHub/HEAD/e-Commerce-Auth/app/config/environments/test.ts -------------------------------------------------------------------------------- /e-Commerce-Auth/app/controller/UserController.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkssharma/e-CommerseHub/HEAD/e-Commerce-Auth/app/controller/UserController.ts -------------------------------------------------------------------------------- /e-Commerce-Auth/app/events/notification.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkssharma/e-CommerseHub/HEAD/e-Commerce-Auth/app/events/notification.ts -------------------------------------------------------------------------------- /e-Commerce-Auth/app/global/templates/emails/assets/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkssharma/e-CommerseHub/HEAD/e-Commerce-Auth/app/global/templates/emails/assets/images/logo.png -------------------------------------------------------------------------------- /e-Commerce-Auth/app/global/templates/emails/password-reset-email/html.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkssharma/e-CommerseHub/HEAD/e-Commerce-Auth/app/global/templates/emails/password-reset-email/html.pug -------------------------------------------------------------------------------- /e-Commerce-Auth/app/global/templates/emails/password-reset-email/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkssharma/e-CommerseHub/HEAD/e-Commerce-Auth/app/global/templates/emails/password-reset-email/style.css -------------------------------------------------------------------------------- /e-Commerce-Auth/app/global/templates/emails/welcome-email/html.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkssharma/e-CommerseHub/HEAD/e-Commerce-Auth/app/global/templates/emails/welcome-email/html.pug -------------------------------------------------------------------------------- /e-Commerce-Auth/app/global/templates/emails/welcome-email/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkssharma/e-CommerseHub/HEAD/e-Commerce-Auth/app/global/templates/emails/welcome-email/style.css -------------------------------------------------------------------------------- /e-Commerce-Auth/app/global/templates/response/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkssharma/e-CommerseHub/HEAD/e-Commerce-Auth/app/global/templates/response/index.ts -------------------------------------------------------------------------------- /e-Commerce-Auth/app/helper/bcrypt.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkssharma/e-CommerseHub/HEAD/e-Commerce-Auth/app/helper/bcrypt.ts -------------------------------------------------------------------------------- /e-Commerce-Auth/app/helper/email.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkssharma/e-CommerseHub/HEAD/e-Commerce-Auth/app/helper/email.ts -------------------------------------------------------------------------------- /e-Commerce-Auth/app/helper/errorHandler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkssharma/e-CommerseHub/HEAD/e-Commerce-Auth/app/helper/errorHandler.ts -------------------------------------------------------------------------------- /e-Commerce-Auth/app/helper/logger.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkssharma/e-CommerseHub/HEAD/e-Commerce-Auth/app/helper/logger.ts -------------------------------------------------------------------------------- /e-Commerce-Auth/app/helper/responseTemplate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkssharma/e-CommerseHub/HEAD/e-Commerce-Auth/app/helper/responseTemplate.ts -------------------------------------------------------------------------------- /e-Commerce-Auth/app/helper/twillo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkssharma/e-CommerseHub/HEAD/e-Commerce-Auth/app/helper/twillo.ts -------------------------------------------------------------------------------- /e-Commerce-Auth/app/lib/logger.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkssharma/e-CommerseHub/HEAD/e-Commerce-Auth/app/lib/logger.ts -------------------------------------------------------------------------------- /e-Commerce-Auth/app/lib/mongoose.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkssharma/e-CommerseHub/HEAD/e-Commerce-Auth/app/lib/mongoose.ts -------------------------------------------------------------------------------- /e-Commerce-Auth/app/lib/requestValidator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkssharma/e-CommerseHub/HEAD/e-Commerce-Auth/app/lib/requestValidator.ts -------------------------------------------------------------------------------- /e-Commerce-Auth/app/middleware/authMiddleware.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkssharma/e-CommerseHub/HEAD/e-Commerce-Auth/app/middleware/authMiddleware.ts -------------------------------------------------------------------------------- /e-Commerce-Auth/app/middleware/requestValidator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkssharma/e-CommerseHub/HEAD/e-Commerce-Auth/app/middleware/requestValidator.ts -------------------------------------------------------------------------------- /e-Commerce-Auth/app/models/plugin/plugin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkssharma/e-CommerseHub/HEAD/e-Commerce-Auth/app/models/plugin/plugin.ts -------------------------------------------------------------------------------- /e-Commerce-Auth/app/models/user.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkssharma/e-CommerseHub/HEAD/e-Commerce-Auth/app/models/user.ts -------------------------------------------------------------------------------- /e-Commerce-Auth/app/routes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkssharma/e-CommerseHub/HEAD/e-Commerce-Auth/app/routes.ts -------------------------------------------------------------------------------- /e-Commerce-Auth/app/routes/defaultRoutes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkssharma/e-CommerseHub/HEAD/e-Commerce-Auth/app/routes/defaultRoutes.ts -------------------------------------------------------------------------------- /e-Commerce-Auth/app/routes/provider/Facebook.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkssharma/e-CommerseHub/HEAD/e-Commerce-Auth/app/routes/provider/Facebook.ts -------------------------------------------------------------------------------- /e-Commerce-Auth/app/routes/provider/Google.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkssharma/e-CommerseHub/HEAD/e-Commerce-Auth/app/routes/provider/Google.ts -------------------------------------------------------------------------------- /e-Commerce-Auth/app/routes/provider/Linkedin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkssharma/e-CommerseHub/HEAD/e-Commerce-Auth/app/routes/provider/Linkedin.ts -------------------------------------------------------------------------------- /e-Commerce-Auth/app/routes/provider/Locale.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkssharma/e-CommerseHub/HEAD/e-Commerce-Auth/app/routes/provider/Locale.ts -------------------------------------------------------------------------------- /e-Commerce-Auth/app/routes/provider/Twitter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkssharma/e-CommerseHub/HEAD/e-Commerce-Auth/app/routes/provider/Twitter.ts -------------------------------------------------------------------------------- /e-Commerce-Auth/app/routes/routes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkssharma/e-CommerseHub/HEAD/e-Commerce-Auth/app/routes/routes.ts -------------------------------------------------------------------------------- /e-Commerce-Auth/app/routes/userRoutes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkssharma/e-CommerseHub/HEAD/e-Commerce-Auth/app/routes/userRoutes.ts -------------------------------------------------------------------------------- /e-Commerce-Auth/app/seed/seedUsers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkssharma/e-CommerseHub/HEAD/e-Commerce-Auth/app/seed/seedUsers.ts -------------------------------------------------------------------------------- /e-Commerce-Auth/app/seed/seedVehicle.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkssharma/e-CommerseHub/HEAD/e-Commerce-Auth/app/seed/seedVehicle.ts -------------------------------------------------------------------------------- /e-Commerce-Auth/app/transformer/userTransformer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkssharma/e-CommerseHub/HEAD/e-Commerce-Auth/app/transformer/userTransformer.ts -------------------------------------------------------------------------------- /e-Commerce-Auth/app/types/global.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkssharma/e-CommerseHub/HEAD/e-Commerce-Auth/app/types/global.d.ts -------------------------------------------------------------------------------- /e-Commerce-Auth/app/types/vendor.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkssharma/e-CommerseHub/HEAD/e-Commerce-Auth/app/types/vendor.d.ts -------------------------------------------------------------------------------- /e-Commerce-Auth/env.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkssharma/e-CommerseHub/HEAD/e-Commerce-Auth/env.sh -------------------------------------------------------------------------------- /e-Commerce-Auth/express.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkssharma/e-CommerseHub/HEAD/e-Commerce-Auth/express.ts -------------------------------------------------------------------------------- /e-Commerce-Auth/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkssharma/e-CommerseHub/HEAD/e-Commerce-Auth/package.json -------------------------------------------------------------------------------- /e-Commerce-Auth/public/images/cinema.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkssharma/e-CommerseHub/HEAD/e-Commerce-Auth/public/images/cinema.jpg -------------------------------------------------------------------------------- /e-Commerce-Auth/public/images/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkssharma/e-CommerseHub/HEAD/e-Commerce-Auth/public/images/favicon.ico -------------------------------------------------------------------------------- /e-Commerce-Auth/public/javascripts/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkssharma/e-CommerseHub/HEAD/e-Commerce-Auth/public/javascripts/script.js -------------------------------------------------------------------------------- /e-Commerce-Auth/public/style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkssharma/e-CommerseHub/HEAD/e-Commerce-Auth/public/style.scss -------------------------------------------------------------------------------- /e-Commerce-Auth/server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkssharma/e-CommerseHub/HEAD/e-Commerce-Auth/server.ts -------------------------------------------------------------------------------- /e-Commerce-Auth/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkssharma/e-CommerseHub/HEAD/e-Commerce-Auth/tsconfig.json -------------------------------------------------------------------------------- /e-Commerce-Auth/tslint.json: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /e-Commerce-Auth/uploads/documents/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /e-Commerce-Auth/uploads/profile/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /e-Commerce-Cart/.sequelizerc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkssharma/e-CommerseHub/HEAD/e-Commerce-Cart/.sequelizerc -------------------------------------------------------------------------------- /e-Commerce-Cart/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkssharma/e-CommerseHub/HEAD/e-Commerce-Cart/Dockerfile -------------------------------------------------------------------------------- /e-Commerce-Cart/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkssharma/e-CommerseHub/HEAD/e-Commerce-Cart/README.md -------------------------------------------------------------------------------- /e-Commerce-Cart/app/config/environments/dev.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkssharma/e-CommerseHub/HEAD/e-Commerce-Cart/app/config/environments/dev.ts -------------------------------------------------------------------------------- /e-Commerce-Cart/app/config/environments/qa.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkssharma/e-CommerseHub/HEAD/e-Commerce-Cart/app/config/environments/qa.ts -------------------------------------------------------------------------------- /e-Commerce-Cart/app/config/environments/test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkssharma/e-CommerseHub/HEAD/e-Commerce-Cart/app/config/environments/test.ts -------------------------------------------------------------------------------- /e-Commerce-Cart/app/events/processEvent.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkssharma/e-CommerseHub/HEAD/e-Commerce-Cart/app/events/processEvent.ts -------------------------------------------------------------------------------- /e-Commerce-Cart/app/helper/errorHandler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkssharma/e-CommerseHub/HEAD/e-Commerce-Cart/app/helper/errorHandler.ts -------------------------------------------------------------------------------- /e-Commerce-Cart/app/helper/errors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkssharma/e-CommerseHub/HEAD/e-Commerce-Cart/app/helper/errors.ts -------------------------------------------------------------------------------- /e-Commerce-Cart/app/helper/logger.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkssharma/e-CommerseHub/HEAD/e-Commerce-Cart/app/helper/logger.ts -------------------------------------------------------------------------------- /e-Commerce-Cart/app/helper/responseTemplate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkssharma/e-CommerseHub/HEAD/e-Commerce-Cart/app/helper/responseTemplate.ts -------------------------------------------------------------------------------- /e-Commerce-Cart/app/lib/logger.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkssharma/e-CommerseHub/HEAD/e-Commerce-Cart/app/lib/logger.ts -------------------------------------------------------------------------------- /e-Commerce-Cart/app/lib/mysql.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkssharma/e-CommerseHub/HEAD/e-Commerce-Cart/app/lib/mysql.ts -------------------------------------------------------------------------------- /e-Commerce-Cart/app/lib/requestValidator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkssharma/e-CommerseHub/HEAD/e-Commerce-Cart/app/lib/requestValidator.ts -------------------------------------------------------------------------------- /e-Commerce-Cart/app/middleware/requestValidator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkssharma/e-CommerseHub/HEAD/e-Commerce-Cart/app/middleware/requestValidator.ts -------------------------------------------------------------------------------- /e-Commerce-Cart/app/models/data/cart.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkssharma/e-CommerseHub/HEAD/e-Commerce-Cart/app/models/data/cart.ts -------------------------------------------------------------------------------- /e-Commerce-Cart/app/routes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkssharma/e-CommerseHub/HEAD/e-Commerce-Cart/app/routes.ts -------------------------------------------------------------------------------- /e-Commerce-Cart/app/routes/defaultRoutes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkssharma/e-CommerseHub/HEAD/e-Commerce-Cart/app/routes/defaultRoutes.ts -------------------------------------------------------------------------------- /e-Commerce-Cart/app/types/global.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkssharma/e-CommerseHub/HEAD/e-Commerce-Cart/app/types/global.d.ts -------------------------------------------------------------------------------- /e-Commerce-Cart/app/types/vendor.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkssharma/e-CommerseHub/HEAD/e-Commerce-Cart/app/types/vendor.d.ts -------------------------------------------------------------------------------- /e-Commerce-Cart/config/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkssharma/e-CommerseHub/HEAD/e-Commerce-Cart/config/config.js -------------------------------------------------------------------------------- /e-Commerce-Cart/env.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkssharma/e-CommerseHub/HEAD/e-Commerce-Cart/env.sh -------------------------------------------------------------------------------- /e-Commerce-Cart/express.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkssharma/e-CommerseHub/HEAD/e-Commerce-Cart/express.ts -------------------------------------------------------------------------------- /e-Commerce-Cart/mysql/schema.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkssharma/e-CommerseHub/HEAD/e-Commerce-Cart/mysql/schema.sql -------------------------------------------------------------------------------- /e-Commerce-Cart/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkssharma/e-CommerseHub/HEAD/e-Commerce-Cart/package.json -------------------------------------------------------------------------------- /e-Commerce-Cart/public/images/cinema.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkssharma/e-CommerseHub/HEAD/e-Commerce-Cart/public/images/cinema.jpg -------------------------------------------------------------------------------- /e-Commerce-Cart/public/images/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkssharma/e-CommerseHub/HEAD/e-Commerce-Cart/public/images/favicon.ico -------------------------------------------------------------------------------- /e-Commerce-Cart/public/javascripts/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkssharma/e-CommerseHub/HEAD/e-Commerce-Cart/public/javascripts/script.js -------------------------------------------------------------------------------- /e-Commerce-Cart/public/style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkssharma/e-CommerseHub/HEAD/e-Commerce-Cart/public/style.scss -------------------------------------------------------------------------------- /e-Commerce-Cart/server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkssharma/e-CommerseHub/HEAD/e-Commerce-Cart/server.ts -------------------------------------------------------------------------------- /e-Commerce-Cart/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkssharma/e-CommerseHub/HEAD/e-Commerce-Cart/tsconfig.json -------------------------------------------------------------------------------- /e-Commerce-Cart/tslint.json: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /e-Commerce-Cart/uploads/documents/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /e-Commerce-Cart/uploads/profile/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /e-Commerce-Client/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkssharma/e-CommerseHub/HEAD/e-Commerce-Client/Dockerfile -------------------------------------------------------------------------------- /e-Commerce-Client/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkssharma/e-CommerseHub/HEAD/e-Commerce-Client/README.md -------------------------------------------------------------------------------- /e-Commerce-Client/env.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkssharma/e-CommerseHub/HEAD/e-Commerce-Client/env.sh -------------------------------------------------------------------------------- /e-Commerce-Client/firebase.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkssharma/e-CommerseHub/HEAD/e-Commerce-Client/firebase.json -------------------------------------------------------------------------------- /e-Commerce-Client/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkssharma/e-CommerseHub/HEAD/e-Commerce-Client/package.json -------------------------------------------------------------------------------- /e-Commerce-Client/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkssharma/e-CommerseHub/HEAD/e-Commerce-Client/public/favicon.ico -------------------------------------------------------------------------------- /e-Commerce-Client/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkssharma/e-CommerseHub/HEAD/e-Commerce-Client/public/index.html -------------------------------------------------------------------------------- /e-Commerce-Client/public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkssharma/e-CommerseHub/HEAD/e-Commerce-Client/public/manifest.json -------------------------------------------------------------------------------- /e-Commerce-Client/public/normalize.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkssharma/e-CommerseHub/HEAD/e-Commerce-Client/public/normalize.css -------------------------------------------------------------------------------- /e-Commerce-Client/src/api/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkssharma/e-CommerseHub/HEAD/e-Commerce-Client/src/api/index.js -------------------------------------------------------------------------------- /e-Commerce-Client/src/components/App/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkssharma/e-CommerseHub/HEAD/e-Commerce-Client/src/components/App/index.js -------------------------------------------------------------------------------- /e-Commerce-Client/src/components/Checkbox/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkssharma/e-CommerseHub/HEAD/e-Commerce-Client/src/components/Checkbox/index.js -------------------------------------------------------------------------------- /e-Commerce-Client/src/components/FloatCart/CartProduct/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkssharma/e-CommerseHub/HEAD/e-Commerce-Client/src/components/FloatCart/CartProduct/index.js -------------------------------------------------------------------------------- /e-Commerce-Client/src/components/FloatCart/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkssharma/e-CommerseHub/HEAD/e-Commerce-Client/src/components/FloatCart/index.js -------------------------------------------------------------------------------- /e-Commerce-Client/src/components/FloatCart/style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkssharma/e-CommerseHub/HEAD/e-Commerce-Client/src/components/FloatCart/style.scss -------------------------------------------------------------------------------- /e-Commerce-Client/src/components/Selectbox/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkssharma/e-CommerseHub/HEAD/e-Commerce-Client/src/components/Selectbox/index.js -------------------------------------------------------------------------------- /e-Commerce-Client/src/components/Shelf/Filter/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkssharma/e-CommerseHub/HEAD/e-Commerce-Client/src/components/Shelf/Filter/index.js -------------------------------------------------------------------------------- /e-Commerce-Client/src/components/Shelf/Filter/style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkssharma/e-CommerseHub/HEAD/e-Commerce-Client/src/components/Shelf/Filter/style.scss -------------------------------------------------------------------------------- /e-Commerce-Client/src/components/Shelf/ProductList/Product/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkssharma/e-CommerseHub/HEAD/e-Commerce-Client/src/components/Shelf/ProductList/Product/index.js -------------------------------------------------------------------------------- /e-Commerce-Client/src/components/Shelf/ProductList/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkssharma/e-CommerseHub/HEAD/e-Commerce-Client/src/components/Shelf/ProductList/index.js -------------------------------------------------------------------------------- /e-Commerce-Client/src/components/Shelf/ShelfHeader/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkssharma/e-CommerseHub/HEAD/e-Commerce-Client/src/components/Shelf/ShelfHeader/index.js -------------------------------------------------------------------------------- /e-Commerce-Client/src/components/Shelf/Sort/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkssharma/e-CommerseHub/HEAD/e-Commerce-Client/src/components/Shelf/Sort/index.js -------------------------------------------------------------------------------- /e-Commerce-Client/src/components/Shelf/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkssharma/e-CommerseHub/HEAD/e-Commerce-Client/src/components/Shelf/index.js -------------------------------------------------------------------------------- /e-Commerce-Client/src/components/Shelf/style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkssharma/e-CommerseHub/HEAD/e-Commerce-Client/src/components/Shelf/style.scss -------------------------------------------------------------------------------- /e-Commerce-Client/src/components/Spinner/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkssharma/e-CommerseHub/HEAD/e-Commerce-Client/src/components/Spinner/index.js -------------------------------------------------------------------------------- /e-Commerce-Client/src/components/Spinner/style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkssharma/e-CommerseHub/HEAD/e-Commerce-Client/src/components/Spinner/style.scss -------------------------------------------------------------------------------- /e-Commerce-Client/src/components/Thumb/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkssharma/e-CommerseHub/HEAD/e-Commerce-Client/src/components/Thumb/index.js -------------------------------------------------------------------------------- /e-Commerce-Client/src/config/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkssharma/e-CommerseHub/HEAD/e-Commerce-Client/src/config/index.js -------------------------------------------------------------------------------- /e-Commerce-Client/src/config/server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkssharma/e-CommerseHub/HEAD/e-Commerce-Client/src/config/server.js -------------------------------------------------------------------------------- /e-Commerce-Client/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkssharma/e-CommerseHub/HEAD/e-Commerce-Client/src/index.js -------------------------------------------------------------------------------- /e-Commerce-Client/src/index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkssharma/e-CommerseHub/HEAD/e-Commerce-Client/src/index.scss -------------------------------------------------------------------------------- /e-Commerce-Client/src/layout/Auth.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkssharma/e-CommerseHub/HEAD/e-Commerce-Client/src/layout/Auth.js -------------------------------------------------------------------------------- /e-Commerce-Client/src/layout/Public.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkssharma/e-CommerseHub/HEAD/e-Commerce-Client/src/layout/Public.js -------------------------------------------------------------------------------- /e-Commerce-Client/src/services/auth/Login.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkssharma/e-CommerseHub/HEAD/e-Commerce-Client/src/services/auth/Login.js -------------------------------------------------------------------------------- /e-Commerce-Client/src/services/auth/Logout.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkssharma/e-CommerseHub/HEAD/e-Commerce-Client/src/services/auth/Logout.js -------------------------------------------------------------------------------- /e-Commerce-Client/src/services/auth/Register.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkssharma/e-CommerseHub/HEAD/e-Commerce-Client/src/services/auth/Register.js -------------------------------------------------------------------------------- /e-Commerce-Client/src/services/auth/ResetPassword.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkssharma/e-CommerseHub/HEAD/e-Commerce-Client/src/services/auth/ResetPassword.js -------------------------------------------------------------------------------- /e-Commerce-Client/src/services/auth/ValidateToken.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkssharma/e-CommerseHub/HEAD/e-Commerce-Client/src/services/auth/ValidateToken.js -------------------------------------------------------------------------------- /e-Commerce-Client/src/services/auth/action.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkssharma/e-CommerseHub/HEAD/e-Commerce-Client/src/services/auth/action.js -------------------------------------------------------------------------------- /e-Commerce-Client/src/services/auth/actionTypes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkssharma/e-CommerseHub/HEAD/e-Commerce-Client/src/services/auth/actionTypes.js -------------------------------------------------------------------------------- /e-Commerce-Client/src/services/auth/auth.scss: -------------------------------------------------------------------------------- 1 | .errorMessage { 2 | color: #b83636 3 | } -------------------------------------------------------------------------------- /e-Commerce-Client/src/services/auth/reducer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkssharma/e-CommerseHub/HEAD/e-Commerce-Client/src/services/auth/reducer.js -------------------------------------------------------------------------------- /e-Commerce-Client/src/services/cart/actionTypes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkssharma/e-CommerseHub/HEAD/e-Commerce-Client/src/services/cart/actionTypes.js -------------------------------------------------------------------------------- /e-Commerce-Client/src/services/cart/actions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkssharma/e-CommerseHub/HEAD/e-Commerce-Client/src/services/cart/actions.js -------------------------------------------------------------------------------- /e-Commerce-Client/src/services/cart/reducer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkssharma/e-CommerseHub/HEAD/e-Commerce-Client/src/services/cart/reducer.js -------------------------------------------------------------------------------- /e-Commerce-Client/src/services/filters/actionTypes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkssharma/e-CommerseHub/HEAD/e-Commerce-Client/src/services/filters/actionTypes.js -------------------------------------------------------------------------------- /e-Commerce-Client/src/services/filters/actions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkssharma/e-CommerseHub/HEAD/e-Commerce-Client/src/services/filters/actions.js -------------------------------------------------------------------------------- /e-Commerce-Client/src/services/filters/reducer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkssharma/e-CommerseHub/HEAD/e-Commerce-Client/src/services/filters/reducer.js -------------------------------------------------------------------------------- /e-Commerce-Client/src/services/reducers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkssharma/e-CommerseHub/HEAD/e-Commerce-Client/src/services/reducers.js -------------------------------------------------------------------------------- /e-Commerce-Client/src/services/shelf/actionTypes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkssharma/e-CommerseHub/HEAD/e-Commerce-Client/src/services/shelf/actionTypes.js -------------------------------------------------------------------------------- /e-Commerce-Client/src/services/shelf/actions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkssharma/e-CommerseHub/HEAD/e-Commerce-Client/src/services/shelf/actions.js -------------------------------------------------------------------------------- /e-Commerce-Client/src/services/shelf/reducer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkssharma/e-CommerseHub/HEAD/e-Commerce-Client/src/services/shelf/reducer.js -------------------------------------------------------------------------------- /e-Commerce-Client/src/services/sort/actionTypes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkssharma/e-CommerseHub/HEAD/e-Commerce-Client/src/services/sort/actionTypes.js -------------------------------------------------------------------------------- /e-Commerce-Client/src/services/sort/actions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkssharma/e-CommerseHub/HEAD/e-Commerce-Client/src/services/sort/actions.js -------------------------------------------------------------------------------- /e-Commerce-Client/src/services/sort/reducer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkssharma/e-CommerseHub/HEAD/e-Commerce-Client/src/services/sort/reducer.js -------------------------------------------------------------------------------- /e-Commerce-Client/src/services/store.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkssharma/e-CommerseHub/HEAD/e-Commerce-Client/src/services/store.js -------------------------------------------------------------------------------- /e-Commerce-Client/src/services/total/actionTypes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkssharma/e-CommerseHub/HEAD/e-Commerce-Client/src/services/total/actionTypes.js -------------------------------------------------------------------------------- /e-Commerce-Client/src/services/total/actions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkssharma/e-CommerseHub/HEAD/e-Commerce-Client/src/services/total/actions.js -------------------------------------------------------------------------------- /e-Commerce-Client/src/services/total/reducer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkssharma/e-CommerseHub/HEAD/e-Commerce-Client/src/services/total/reducer.js -------------------------------------------------------------------------------- /e-Commerce-Client/src/services/util.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkssharma/e-CommerseHub/HEAD/e-Commerce-Client/src/services/util.js -------------------------------------------------------------------------------- /e-Commerce-Client/src/setupTests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkssharma/e-CommerseHub/HEAD/e-Commerce-Client/src/setupTests.js -------------------------------------------------------------------------------- /e-Commerce-Client/src/static/bag-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkssharma/e-CommerseHub/HEAD/e-Commerce-Client/src/static/bag-icon.png -------------------------------------------------------------------------------- /e-Commerce-Client/src/static/products/100_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkssharma/e-CommerseHub/HEAD/e-Commerce-Client/src/static/products/100_1.jpg -------------------------------------------------------------------------------- /e-Commerce-Client/src/static/products/100_2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkssharma/e-CommerseHub/HEAD/e-Commerce-Client/src/static/products/100_2.jpg -------------------------------------------------------------------------------- /e-Commerce-Client/src/static/products/101_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkssharma/e-CommerseHub/HEAD/e-Commerce-Client/src/static/products/101_1.jpg -------------------------------------------------------------------------------- /e-Commerce-Client/src/static/products/101_2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkssharma/e-CommerseHub/HEAD/e-Commerce-Client/src/static/products/101_2.jpg -------------------------------------------------------------------------------- /e-Commerce-Client/src/static/products/10412368723880252_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkssharma/e-CommerseHub/HEAD/e-Commerce-Client/src/static/products/10412368723880252_1.jpg -------------------------------------------------------------------------------- /e-Commerce-Client/src/static/products/10412368723880252_2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkssharma/e-CommerseHub/HEAD/e-Commerce-Client/src/static/products/10412368723880252_2.jpg -------------------------------------------------------------------------------- /e-Commerce-Client/src/static/products/10547961582846888_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkssharma/e-CommerseHub/HEAD/e-Commerce-Client/src/static/products/10547961582846888_1.jpg -------------------------------------------------------------------------------- /e-Commerce-Client/src/static/products/10547961582846888_2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkssharma/e-CommerseHub/HEAD/e-Commerce-Client/src/static/products/10547961582846888_2.jpg -------------------------------------------------------------------------------- /e-Commerce-Client/src/static/products/10686354557628304_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkssharma/e-CommerseHub/HEAD/e-Commerce-Client/src/static/products/10686354557628304_1.jpg -------------------------------------------------------------------------------- /e-Commerce-Client/src/static/products/10686354557628304_2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkssharma/e-CommerseHub/HEAD/e-Commerce-Client/src/static/products/10686354557628304_2.jpg -------------------------------------------------------------------------------- /e-Commerce-Client/src/static/products/11033926921508488_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkssharma/e-CommerseHub/HEAD/e-Commerce-Client/src/static/products/11033926921508488_1.jpg -------------------------------------------------------------------------------- /e-Commerce-Client/src/static/products/11033926921508488_2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkssharma/e-CommerseHub/HEAD/e-Commerce-Client/src/static/products/11033926921508488_2.jpg -------------------------------------------------------------------------------- /e-Commerce-Client/src/static/products/11600983276356164_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkssharma/e-CommerseHub/HEAD/e-Commerce-Client/src/static/products/11600983276356164_1.jpg -------------------------------------------------------------------------------- /e-Commerce-Client/src/static/products/11600983276356164_2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkssharma/e-CommerseHub/HEAD/e-Commerce-Client/src/static/products/11600983276356164_2.jpg -------------------------------------------------------------------------------- /e-Commerce-Client/src/static/products/11854078013954528_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkssharma/e-CommerseHub/HEAD/e-Commerce-Client/src/static/products/11854078013954528_1.jpg -------------------------------------------------------------------------------- /e-Commerce-Client/src/static/products/11854078013954528_2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkssharma/e-CommerseHub/HEAD/e-Commerce-Client/src/static/products/11854078013954528_2.jpg -------------------------------------------------------------------------------- /e-Commerce-Client/src/static/products/12064273040195392_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkssharma/e-CommerseHub/HEAD/e-Commerce-Client/src/static/products/12064273040195392_1.jpg -------------------------------------------------------------------------------- /e-Commerce-Client/src/static/products/12064273040195392_2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkssharma/e-CommerseHub/HEAD/e-Commerce-Client/src/static/products/12064273040195392_2.jpg -------------------------------------------------------------------------------- /e-Commerce-Client/src/static/products/18532669286405344_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkssharma/e-CommerseHub/HEAD/e-Commerce-Client/src/static/products/18532669286405344_1.jpg -------------------------------------------------------------------------------- /e-Commerce-Client/src/static/products/18532669286405344_2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkssharma/e-CommerseHub/HEAD/e-Commerce-Client/src/static/products/18532669286405344_2.jpg -------------------------------------------------------------------------------- /e-Commerce-Client/src/static/products/18644119330491310_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkssharma/e-CommerseHub/HEAD/e-Commerce-Client/src/static/products/18644119330491310_1.jpg -------------------------------------------------------------------------------- /e-Commerce-Client/src/static/products/18644119330491310_2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkssharma/e-CommerseHub/HEAD/e-Commerce-Client/src/static/products/18644119330491310_2.jpg -------------------------------------------------------------------------------- /e-Commerce-Client/src/static/products/27250082398145996_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkssharma/e-CommerseHub/HEAD/e-Commerce-Client/src/static/products/27250082398145996_1.jpg -------------------------------------------------------------------------------- /e-Commerce-Client/src/static/products/27250082398145996_2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkssharma/e-CommerseHub/HEAD/e-Commerce-Client/src/static/products/27250082398145996_2.jpg -------------------------------------------------------------------------------- /e-Commerce-Client/src/static/products/39876704341265610_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkssharma/e-CommerseHub/HEAD/e-Commerce-Client/src/static/products/39876704341265610_1.jpg -------------------------------------------------------------------------------- /e-Commerce-Client/src/static/products/39876704341265610_2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkssharma/e-CommerseHub/HEAD/e-Commerce-Client/src/static/products/39876704341265610_2.jpg -------------------------------------------------------------------------------- /e-Commerce-Client/src/static/products/51498472915966370_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkssharma/e-CommerseHub/HEAD/e-Commerce-Client/src/static/products/51498472915966370_1.jpg -------------------------------------------------------------------------------- /e-Commerce-Client/src/static/products/51498472915966370_2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkssharma/e-CommerseHub/HEAD/e-Commerce-Client/src/static/products/51498472915966370_2.jpg -------------------------------------------------------------------------------- /e-Commerce-Client/src/static/products/5619496040738316_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkssharma/e-CommerseHub/HEAD/e-Commerce-Client/src/static/products/5619496040738316_1.jpg -------------------------------------------------------------------------------- /e-Commerce-Client/src/static/products/5619496040738316_2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkssharma/e-CommerseHub/HEAD/e-Commerce-Client/src/static/products/5619496040738316_2.jpg -------------------------------------------------------------------------------- /e-Commerce-Client/src/static/products/6090484789343891_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkssharma/e-CommerseHub/HEAD/e-Commerce-Client/src/static/products/6090484789343891_1.jpg -------------------------------------------------------------------------------- /e-Commerce-Client/src/static/products/6090484789343891_2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkssharma/e-CommerseHub/HEAD/e-Commerce-Client/src/static/products/6090484789343891_2.jpg -------------------------------------------------------------------------------- /e-Commerce-Client/src/static/products/8552515751438644_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkssharma/e-CommerseHub/HEAD/e-Commerce-Client/src/static/products/8552515751438644_1.jpg -------------------------------------------------------------------------------- /e-Commerce-Client/src/static/products/8552515751438644_2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkssharma/e-CommerseHub/HEAD/e-Commerce-Client/src/static/products/8552515751438644_2.jpg -------------------------------------------------------------------------------- /e-Commerce-Client/src/static/products/876661122392077_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkssharma/e-CommerseHub/HEAD/e-Commerce-Client/src/static/products/876661122392077_1.jpg -------------------------------------------------------------------------------- /e-Commerce-Client/src/static/products/876661122392077_2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkssharma/e-CommerseHub/HEAD/e-Commerce-Client/src/static/products/876661122392077_2.jpg -------------------------------------------------------------------------------- /e-Commerce-Client/src/static/products/9197907543445676_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkssharma/e-CommerseHub/HEAD/e-Commerce-Client/src/static/products/9197907543445676_1.jpg -------------------------------------------------------------------------------- /e-Commerce-Client/src/static/products/9197907543445676_2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkssharma/e-CommerseHub/HEAD/e-Commerce-Client/src/static/products/9197907543445676_2.jpg -------------------------------------------------------------------------------- /e-Commerce-Client/src/static/sprite_delete-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkssharma/e-CommerseHub/HEAD/e-Commerce-Client/src/static/sprite_delete-icon.png -------------------------------------------------------------------------------- /e-Commerce-Client/src/util/helper/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkssharma/e-CommerseHub/HEAD/e-Commerce-Client/src/util/helper/index.js -------------------------------------------------------------------------------- /e-Commerce-Client/src/util/middleware/auth.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkssharma/e-CommerseHub/HEAD/e-Commerce-Client/src/util/middleware/auth.js -------------------------------------------------------------------------------- /e-Commerce-Client/src/util/middleware/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkssharma/e-CommerseHub/HEAD/e-Commerce-Client/src/util/middleware/index.js -------------------------------------------------------------------------------- /proxy/default.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkssharma/e-CommerseHub/HEAD/proxy/default.conf -------------------------------------------------------------------------------- /proxy/hosts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkssharma/e-CommerseHub/HEAD/proxy/hosts -------------------------------------------------------------------------------- /proxy/ssl/pac.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkssharma/e-CommerseHub/HEAD/proxy/ssl/pac.crt -------------------------------------------------------------------------------- /proxy/ssl/pac.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkssharma/e-CommerseHub/HEAD/proxy/ssl/pac.key -------------------------------------------------------------------------------- /screens/02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkssharma/e-CommerseHub/HEAD/screens/02.png -------------------------------------------------------------------------------- /screens/03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkssharma/e-CommerseHub/HEAD/screens/03.png --------------------------------------------------------------------------------