├── .env ├── .gitignore ├── controller └── paymentController.js ├── frontend ├── .eslintrc.cjs ├── README.md ├── index.html ├── package-lock.json ├── package.json ├── public │ └── vite.svg ├── src │ ├── App.css │ ├── App.jsx │ ├── assets │ │ └── react.svg │ ├── components │ │ ├── Error.jsx │ │ ├── Home.jsx │ │ └── Success.jsx │ ├── index.css │ └── main.jsx └── vite.config.js ├── middleware └── middleware.js ├── model └── paymentModel.js ├── package.json ├── routes └── routes.js └── server.js /.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SheikhFarid99/bkash-payment-react-node/HEAD/.env -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SheikhFarid99/bkash-payment-react-node/HEAD/.gitignore -------------------------------------------------------------------------------- /controller/paymentController.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SheikhFarid99/bkash-payment-react-node/HEAD/controller/paymentController.js -------------------------------------------------------------------------------- /frontend/.eslintrc.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SheikhFarid99/bkash-payment-react-node/HEAD/frontend/.eslintrc.cjs -------------------------------------------------------------------------------- /frontend/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SheikhFarid99/bkash-payment-react-node/HEAD/frontend/README.md -------------------------------------------------------------------------------- /frontend/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SheikhFarid99/bkash-payment-react-node/HEAD/frontend/index.html -------------------------------------------------------------------------------- /frontend/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SheikhFarid99/bkash-payment-react-node/HEAD/frontend/package-lock.json -------------------------------------------------------------------------------- /frontend/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SheikhFarid99/bkash-payment-react-node/HEAD/frontend/package.json -------------------------------------------------------------------------------- /frontend/public/vite.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SheikhFarid99/bkash-payment-react-node/HEAD/frontend/public/vite.svg -------------------------------------------------------------------------------- /frontend/src/App.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SheikhFarid99/bkash-payment-react-node/HEAD/frontend/src/App.css -------------------------------------------------------------------------------- /frontend/src/App.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SheikhFarid99/bkash-payment-react-node/HEAD/frontend/src/App.jsx -------------------------------------------------------------------------------- /frontend/src/assets/react.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SheikhFarid99/bkash-payment-react-node/HEAD/frontend/src/assets/react.svg -------------------------------------------------------------------------------- /frontend/src/components/Error.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SheikhFarid99/bkash-payment-react-node/HEAD/frontend/src/components/Error.jsx -------------------------------------------------------------------------------- /frontend/src/components/Home.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SheikhFarid99/bkash-payment-react-node/HEAD/frontend/src/components/Home.jsx -------------------------------------------------------------------------------- /frontend/src/components/Success.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SheikhFarid99/bkash-payment-react-node/HEAD/frontend/src/components/Success.jsx -------------------------------------------------------------------------------- /frontend/src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SheikhFarid99/bkash-payment-react-node/HEAD/frontend/src/index.css -------------------------------------------------------------------------------- /frontend/src/main.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SheikhFarid99/bkash-payment-react-node/HEAD/frontend/src/main.jsx -------------------------------------------------------------------------------- /frontend/vite.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SheikhFarid99/bkash-payment-react-node/HEAD/frontend/vite.config.js -------------------------------------------------------------------------------- /middleware/middleware.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SheikhFarid99/bkash-payment-react-node/HEAD/middleware/middleware.js -------------------------------------------------------------------------------- /model/paymentModel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SheikhFarid99/bkash-payment-react-node/HEAD/model/paymentModel.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SheikhFarid99/bkash-payment-react-node/HEAD/package.json -------------------------------------------------------------------------------- /routes/routes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SheikhFarid99/bkash-payment-react-node/HEAD/routes/routes.js -------------------------------------------------------------------------------- /server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SheikhFarid99/bkash-payment-react-node/HEAD/server.js --------------------------------------------------------------------------------