├── .gitignore ├── Images ├── Screenshot from 2021-06-13 13-22-39.png ├── Screenshot from 2021-06-13 13-23-06.png ├── Screenshot from 2021-06-13 13-23-48.png ├── Screenshot from 2021-06-13 13-24-03.png ├── Screenshot from 2021-06-13 13-24-25.png ├── Screenshot from 2021-06-13 13-24-43.png ├── Screenshot from 2021-06-13 13-24-55.png ├── Screenshot from 2021-06-13 13-25-16.png ├── Screenshot from 2021-06-13 13-25-26.png └── heroku.txt ├── Procfile ├── Readme.md ├── backend ├── config │ └── db.js ├── data │ ├── products.js │ └── users.js ├── index.js ├── middleware │ └── authMiddleware.js ├── models │ ├── Order.js │ ├── Product.js │ └── User.js ├── routes │ ├── orderRoutes.js │ ├── productRoutes.js │ └── userRoutes.js ├── seeder.js └── utils │ ├── capitalize.js │ └── generateToken.js ├── frontend ├── .env ├── .gitignore ├── package-lock.json ├── package.json ├── public │ ├── Images │ │ ├── google.png │ │ ├── google1.jpg │ │ ├── loader.gif │ │ └── products │ │ │ ├── cereal1.jpeg │ │ │ ├── cereal2.jpeg │ │ │ ├── deodrant1.jpeg │ │ │ ├── deodrant2.jpeg │ │ │ ├── kurta1.jpeg │ │ │ ├── kurta2.jpeg │ │ │ ├── mobile1.jpeg │ │ │ ├── mobile2.jpeg │ │ │ ├── paint1.jpeg │ │ │ ├── paint2.jpeg │ │ │ ├── rice1.jpeg │ │ │ ├── rice2.jpeg │ │ │ ├── saree1.jpeg │ │ │ ├── saree2.jpeg │ │ │ ├── shampoo1.jpeg │ │ │ ├── shampoo2.jpeg │ │ │ ├── shirt1.jpeg │ │ │ ├── shirt2.jpeg │ │ │ ├── tv1.jpeg │ │ │ └── tv2.jpeg │ └── index.html └── src │ ├── App.js │ ├── DummyData.js │ ├── actions │ ├── cartActions.js │ ├── orderActions.js │ ├── productActions.js │ └── userActions.js │ ├── components │ ├── CheckoutSteps.js │ ├── Footer.js │ ├── ImageCarousel.js │ ├── Loading.js │ ├── Message.js │ ├── Navbar.js │ ├── ProductCard.js │ └── Rating.js │ ├── constants │ ├── ProductConstants.js │ ├── cartConstants.js │ ├── orderConstants.js │ └── userConstants.js │ ├── index.css │ ├── index.js │ ├── reducers │ ├── cartReducers.js │ ├── orderReducers.js │ ├── productReducers.js │ └── userReducers.js │ ├── screens │ ├── AdminOrders.js │ ├── AdminProducts.js │ ├── AdminUsers.js │ ├── CartScreen.js │ ├── CategoryDetails.js │ ├── Home.js │ ├── Login.js │ ├── MyOrders.js │ ├── OrderDetails.js │ ├── OrderScreen.js │ ├── Payment.js │ ├── ProductCreate.js │ ├── ProductEdit.js │ ├── ProductScreen.js │ ├── Register.js │ ├── Shipping.js │ ├── SubCategoryDetails.js │ └── UserAccountScreen.js │ └── store.js └── package.json /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto27dev/shopping_MERN/HEAD/.gitignore -------------------------------------------------------------------------------- /Images/Screenshot from 2021-06-13 13-22-39.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto27dev/shopping_MERN/HEAD/Images/Screenshot from 2021-06-13 13-22-39.png -------------------------------------------------------------------------------- /Images/Screenshot from 2021-06-13 13-23-06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto27dev/shopping_MERN/HEAD/Images/Screenshot from 2021-06-13 13-23-06.png -------------------------------------------------------------------------------- /Images/Screenshot from 2021-06-13 13-23-48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto27dev/shopping_MERN/HEAD/Images/Screenshot from 2021-06-13 13-23-48.png -------------------------------------------------------------------------------- /Images/Screenshot from 2021-06-13 13-24-03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto27dev/shopping_MERN/HEAD/Images/Screenshot from 2021-06-13 13-24-03.png -------------------------------------------------------------------------------- /Images/Screenshot from 2021-06-13 13-24-25.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto27dev/shopping_MERN/HEAD/Images/Screenshot from 2021-06-13 13-24-25.png -------------------------------------------------------------------------------- /Images/Screenshot from 2021-06-13 13-24-43.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto27dev/shopping_MERN/HEAD/Images/Screenshot from 2021-06-13 13-24-43.png -------------------------------------------------------------------------------- /Images/Screenshot from 2021-06-13 13-24-55.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto27dev/shopping_MERN/HEAD/Images/Screenshot from 2021-06-13 13-24-55.png -------------------------------------------------------------------------------- /Images/Screenshot from 2021-06-13 13-25-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto27dev/shopping_MERN/HEAD/Images/Screenshot from 2021-06-13 13-25-16.png -------------------------------------------------------------------------------- /Images/Screenshot from 2021-06-13 13-25-26.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto27dev/shopping_MERN/HEAD/Images/Screenshot from 2021-06-13 13-25-26.png -------------------------------------------------------------------------------- /Images/heroku.txt: -------------------------------------------------------------------------------- 1 | Heroku deploy -------------------------------------------------------------------------------- /Procfile: -------------------------------------------------------------------------------- 1 | web:node backend/index.js -------------------------------------------------------------------------------- /Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto27dev/shopping_MERN/HEAD/Readme.md -------------------------------------------------------------------------------- /backend/config/db.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto27dev/shopping_MERN/HEAD/backend/config/db.js -------------------------------------------------------------------------------- /backend/data/products.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto27dev/shopping_MERN/HEAD/backend/data/products.js -------------------------------------------------------------------------------- /backend/data/users.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto27dev/shopping_MERN/HEAD/backend/data/users.js -------------------------------------------------------------------------------- /backend/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto27dev/shopping_MERN/HEAD/backend/index.js -------------------------------------------------------------------------------- /backend/middleware/authMiddleware.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto27dev/shopping_MERN/HEAD/backend/middleware/authMiddleware.js -------------------------------------------------------------------------------- /backend/models/Order.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto27dev/shopping_MERN/HEAD/backend/models/Order.js -------------------------------------------------------------------------------- /backend/models/Product.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto27dev/shopping_MERN/HEAD/backend/models/Product.js -------------------------------------------------------------------------------- /backend/models/User.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto27dev/shopping_MERN/HEAD/backend/models/User.js -------------------------------------------------------------------------------- /backend/routes/orderRoutes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto27dev/shopping_MERN/HEAD/backend/routes/orderRoutes.js -------------------------------------------------------------------------------- /backend/routes/productRoutes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto27dev/shopping_MERN/HEAD/backend/routes/productRoutes.js -------------------------------------------------------------------------------- /backend/routes/userRoutes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto27dev/shopping_MERN/HEAD/backend/routes/userRoutes.js -------------------------------------------------------------------------------- /backend/seeder.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto27dev/shopping_MERN/HEAD/backend/seeder.js -------------------------------------------------------------------------------- /backend/utils/capitalize.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto27dev/shopping_MERN/HEAD/backend/utils/capitalize.js -------------------------------------------------------------------------------- /backend/utils/generateToken.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto27dev/shopping_MERN/HEAD/backend/utils/generateToken.js -------------------------------------------------------------------------------- /frontend/.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto27dev/shopping_MERN/HEAD/frontend/.env -------------------------------------------------------------------------------- /frontend/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto27dev/shopping_MERN/HEAD/frontend/.gitignore -------------------------------------------------------------------------------- /frontend/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto27dev/shopping_MERN/HEAD/frontend/package-lock.json -------------------------------------------------------------------------------- /frontend/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto27dev/shopping_MERN/HEAD/frontend/package.json -------------------------------------------------------------------------------- /frontend/public/Images/google.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto27dev/shopping_MERN/HEAD/frontend/public/Images/google.png -------------------------------------------------------------------------------- /frontend/public/Images/google1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto27dev/shopping_MERN/HEAD/frontend/public/Images/google1.jpg -------------------------------------------------------------------------------- /frontend/public/Images/loader.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto27dev/shopping_MERN/HEAD/frontend/public/Images/loader.gif -------------------------------------------------------------------------------- /frontend/public/Images/products/cereal1.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto27dev/shopping_MERN/HEAD/frontend/public/Images/products/cereal1.jpeg -------------------------------------------------------------------------------- /frontend/public/Images/products/cereal2.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto27dev/shopping_MERN/HEAD/frontend/public/Images/products/cereal2.jpeg -------------------------------------------------------------------------------- /frontend/public/Images/products/deodrant1.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto27dev/shopping_MERN/HEAD/frontend/public/Images/products/deodrant1.jpeg -------------------------------------------------------------------------------- /frontend/public/Images/products/deodrant2.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto27dev/shopping_MERN/HEAD/frontend/public/Images/products/deodrant2.jpeg -------------------------------------------------------------------------------- /frontend/public/Images/products/kurta1.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto27dev/shopping_MERN/HEAD/frontend/public/Images/products/kurta1.jpeg -------------------------------------------------------------------------------- /frontend/public/Images/products/kurta2.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto27dev/shopping_MERN/HEAD/frontend/public/Images/products/kurta2.jpeg -------------------------------------------------------------------------------- /frontend/public/Images/products/mobile1.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto27dev/shopping_MERN/HEAD/frontend/public/Images/products/mobile1.jpeg -------------------------------------------------------------------------------- /frontend/public/Images/products/mobile2.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto27dev/shopping_MERN/HEAD/frontend/public/Images/products/mobile2.jpeg -------------------------------------------------------------------------------- /frontend/public/Images/products/paint1.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto27dev/shopping_MERN/HEAD/frontend/public/Images/products/paint1.jpeg -------------------------------------------------------------------------------- /frontend/public/Images/products/paint2.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto27dev/shopping_MERN/HEAD/frontend/public/Images/products/paint2.jpeg -------------------------------------------------------------------------------- /frontend/public/Images/products/rice1.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto27dev/shopping_MERN/HEAD/frontend/public/Images/products/rice1.jpeg -------------------------------------------------------------------------------- /frontend/public/Images/products/rice2.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto27dev/shopping_MERN/HEAD/frontend/public/Images/products/rice2.jpeg -------------------------------------------------------------------------------- /frontend/public/Images/products/saree1.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto27dev/shopping_MERN/HEAD/frontend/public/Images/products/saree1.jpeg -------------------------------------------------------------------------------- /frontend/public/Images/products/saree2.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto27dev/shopping_MERN/HEAD/frontend/public/Images/products/saree2.jpeg -------------------------------------------------------------------------------- /frontend/public/Images/products/shampoo1.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto27dev/shopping_MERN/HEAD/frontend/public/Images/products/shampoo1.jpeg -------------------------------------------------------------------------------- /frontend/public/Images/products/shampoo2.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto27dev/shopping_MERN/HEAD/frontend/public/Images/products/shampoo2.jpeg -------------------------------------------------------------------------------- /frontend/public/Images/products/shirt1.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto27dev/shopping_MERN/HEAD/frontend/public/Images/products/shirt1.jpeg -------------------------------------------------------------------------------- /frontend/public/Images/products/shirt2.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto27dev/shopping_MERN/HEAD/frontend/public/Images/products/shirt2.jpeg -------------------------------------------------------------------------------- /frontend/public/Images/products/tv1.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto27dev/shopping_MERN/HEAD/frontend/public/Images/products/tv1.jpeg -------------------------------------------------------------------------------- /frontend/public/Images/products/tv2.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto27dev/shopping_MERN/HEAD/frontend/public/Images/products/tv2.jpeg -------------------------------------------------------------------------------- /frontend/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto27dev/shopping_MERN/HEAD/frontend/public/index.html -------------------------------------------------------------------------------- /frontend/src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto27dev/shopping_MERN/HEAD/frontend/src/App.js -------------------------------------------------------------------------------- /frontend/src/DummyData.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto27dev/shopping_MERN/HEAD/frontend/src/DummyData.js -------------------------------------------------------------------------------- /frontend/src/actions/cartActions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto27dev/shopping_MERN/HEAD/frontend/src/actions/cartActions.js -------------------------------------------------------------------------------- /frontend/src/actions/orderActions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto27dev/shopping_MERN/HEAD/frontend/src/actions/orderActions.js -------------------------------------------------------------------------------- /frontend/src/actions/productActions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto27dev/shopping_MERN/HEAD/frontend/src/actions/productActions.js -------------------------------------------------------------------------------- /frontend/src/actions/userActions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto27dev/shopping_MERN/HEAD/frontend/src/actions/userActions.js -------------------------------------------------------------------------------- /frontend/src/components/CheckoutSteps.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto27dev/shopping_MERN/HEAD/frontend/src/components/CheckoutSteps.js -------------------------------------------------------------------------------- /frontend/src/components/Footer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto27dev/shopping_MERN/HEAD/frontend/src/components/Footer.js -------------------------------------------------------------------------------- /frontend/src/components/ImageCarousel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto27dev/shopping_MERN/HEAD/frontend/src/components/ImageCarousel.js -------------------------------------------------------------------------------- /frontend/src/components/Loading.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto27dev/shopping_MERN/HEAD/frontend/src/components/Loading.js -------------------------------------------------------------------------------- /frontend/src/components/Message.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto27dev/shopping_MERN/HEAD/frontend/src/components/Message.js -------------------------------------------------------------------------------- /frontend/src/components/Navbar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto27dev/shopping_MERN/HEAD/frontend/src/components/Navbar.js -------------------------------------------------------------------------------- /frontend/src/components/ProductCard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto27dev/shopping_MERN/HEAD/frontend/src/components/ProductCard.js -------------------------------------------------------------------------------- /frontend/src/components/Rating.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto27dev/shopping_MERN/HEAD/frontend/src/components/Rating.js -------------------------------------------------------------------------------- /frontend/src/constants/ProductConstants.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto27dev/shopping_MERN/HEAD/frontend/src/constants/ProductConstants.js -------------------------------------------------------------------------------- /frontend/src/constants/cartConstants.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto27dev/shopping_MERN/HEAD/frontend/src/constants/cartConstants.js -------------------------------------------------------------------------------- /frontend/src/constants/orderConstants.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto27dev/shopping_MERN/HEAD/frontend/src/constants/orderConstants.js -------------------------------------------------------------------------------- /frontend/src/constants/userConstants.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto27dev/shopping_MERN/HEAD/frontend/src/constants/userConstants.js -------------------------------------------------------------------------------- /frontend/src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto27dev/shopping_MERN/HEAD/frontend/src/index.css -------------------------------------------------------------------------------- /frontend/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto27dev/shopping_MERN/HEAD/frontend/src/index.js -------------------------------------------------------------------------------- /frontend/src/reducers/cartReducers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto27dev/shopping_MERN/HEAD/frontend/src/reducers/cartReducers.js -------------------------------------------------------------------------------- /frontend/src/reducers/orderReducers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto27dev/shopping_MERN/HEAD/frontend/src/reducers/orderReducers.js -------------------------------------------------------------------------------- /frontend/src/reducers/productReducers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto27dev/shopping_MERN/HEAD/frontend/src/reducers/productReducers.js -------------------------------------------------------------------------------- /frontend/src/reducers/userReducers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto27dev/shopping_MERN/HEAD/frontend/src/reducers/userReducers.js -------------------------------------------------------------------------------- /frontend/src/screens/AdminOrders.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto27dev/shopping_MERN/HEAD/frontend/src/screens/AdminOrders.js -------------------------------------------------------------------------------- /frontend/src/screens/AdminProducts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto27dev/shopping_MERN/HEAD/frontend/src/screens/AdminProducts.js -------------------------------------------------------------------------------- /frontend/src/screens/AdminUsers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto27dev/shopping_MERN/HEAD/frontend/src/screens/AdminUsers.js -------------------------------------------------------------------------------- /frontend/src/screens/CartScreen.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto27dev/shopping_MERN/HEAD/frontend/src/screens/CartScreen.js -------------------------------------------------------------------------------- /frontend/src/screens/CategoryDetails.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto27dev/shopping_MERN/HEAD/frontend/src/screens/CategoryDetails.js -------------------------------------------------------------------------------- /frontend/src/screens/Home.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto27dev/shopping_MERN/HEAD/frontend/src/screens/Home.js -------------------------------------------------------------------------------- /frontend/src/screens/Login.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto27dev/shopping_MERN/HEAD/frontend/src/screens/Login.js -------------------------------------------------------------------------------- /frontend/src/screens/MyOrders.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto27dev/shopping_MERN/HEAD/frontend/src/screens/MyOrders.js -------------------------------------------------------------------------------- /frontend/src/screens/OrderDetails.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto27dev/shopping_MERN/HEAD/frontend/src/screens/OrderDetails.js -------------------------------------------------------------------------------- /frontend/src/screens/OrderScreen.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto27dev/shopping_MERN/HEAD/frontend/src/screens/OrderScreen.js -------------------------------------------------------------------------------- /frontend/src/screens/Payment.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto27dev/shopping_MERN/HEAD/frontend/src/screens/Payment.js -------------------------------------------------------------------------------- /frontend/src/screens/ProductCreate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto27dev/shopping_MERN/HEAD/frontend/src/screens/ProductCreate.js -------------------------------------------------------------------------------- /frontend/src/screens/ProductEdit.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto27dev/shopping_MERN/HEAD/frontend/src/screens/ProductEdit.js -------------------------------------------------------------------------------- /frontend/src/screens/ProductScreen.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto27dev/shopping_MERN/HEAD/frontend/src/screens/ProductScreen.js -------------------------------------------------------------------------------- /frontend/src/screens/Register.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto27dev/shopping_MERN/HEAD/frontend/src/screens/Register.js -------------------------------------------------------------------------------- /frontend/src/screens/Shipping.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto27dev/shopping_MERN/HEAD/frontend/src/screens/Shipping.js -------------------------------------------------------------------------------- /frontend/src/screens/SubCategoryDetails.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto27dev/shopping_MERN/HEAD/frontend/src/screens/SubCategoryDetails.js -------------------------------------------------------------------------------- /frontend/src/screens/UserAccountScreen.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto27dev/shopping_MERN/HEAD/frontend/src/screens/UserAccountScreen.js -------------------------------------------------------------------------------- /frontend/src/store.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto27dev/shopping_MERN/HEAD/frontend/src/store.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto27dev/shopping_MERN/HEAD/package.json --------------------------------------------------------------------------------