├── client ├── .gitignore ├── README.md ├── package-lock.json ├── package.json ├── public │ ├── favicon.ico │ ├── index.html │ ├── logo192.png │ ├── logo512.png │ ├── manifest.json │ └── robots.txt └── src │ ├── App.css │ ├── App.js │ ├── App.test.js │ ├── components │ ├── Cancel.js │ ├── CardData.js │ ├── CartDetails.js │ ├── Headers.js │ ├── Home.js │ ├── Sucess.js │ ├── cartstyle.css │ └── style.css │ ├── index.css │ ├── index.js │ ├── logo.svg │ ├── redux │ ├── app │ │ └── store.js │ └── features │ │ └── cartSlice.js │ ├── reportWebVitals.js │ └── setupTests.js └── server ├── .gitignore ├── app.js ├── package-lock.json └── package.json /client/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harsh17112000/stripe_inreact_node/HEAD/client/.gitignore -------------------------------------------------------------------------------- /client/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harsh17112000/stripe_inreact_node/HEAD/client/README.md -------------------------------------------------------------------------------- /client/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harsh17112000/stripe_inreact_node/HEAD/client/package-lock.json -------------------------------------------------------------------------------- /client/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harsh17112000/stripe_inreact_node/HEAD/client/package.json -------------------------------------------------------------------------------- /client/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harsh17112000/stripe_inreact_node/HEAD/client/public/favicon.ico -------------------------------------------------------------------------------- /client/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harsh17112000/stripe_inreact_node/HEAD/client/public/index.html -------------------------------------------------------------------------------- /client/public/logo192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harsh17112000/stripe_inreact_node/HEAD/client/public/logo192.png -------------------------------------------------------------------------------- /client/public/logo512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harsh17112000/stripe_inreact_node/HEAD/client/public/logo512.png -------------------------------------------------------------------------------- /client/public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harsh17112000/stripe_inreact_node/HEAD/client/public/manifest.json -------------------------------------------------------------------------------- /client/public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harsh17112000/stripe_inreact_node/HEAD/client/public/robots.txt -------------------------------------------------------------------------------- /client/src/App.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harsh17112000/stripe_inreact_node/HEAD/client/src/App.css -------------------------------------------------------------------------------- /client/src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harsh17112000/stripe_inreact_node/HEAD/client/src/App.js -------------------------------------------------------------------------------- /client/src/App.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harsh17112000/stripe_inreact_node/HEAD/client/src/App.test.js -------------------------------------------------------------------------------- /client/src/components/Cancel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harsh17112000/stripe_inreact_node/HEAD/client/src/components/Cancel.js -------------------------------------------------------------------------------- /client/src/components/CardData.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harsh17112000/stripe_inreact_node/HEAD/client/src/components/CardData.js -------------------------------------------------------------------------------- /client/src/components/CartDetails.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harsh17112000/stripe_inreact_node/HEAD/client/src/components/CartDetails.js -------------------------------------------------------------------------------- /client/src/components/Headers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harsh17112000/stripe_inreact_node/HEAD/client/src/components/Headers.js -------------------------------------------------------------------------------- /client/src/components/Home.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harsh17112000/stripe_inreact_node/HEAD/client/src/components/Home.js -------------------------------------------------------------------------------- /client/src/components/Sucess.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harsh17112000/stripe_inreact_node/HEAD/client/src/components/Sucess.js -------------------------------------------------------------------------------- /client/src/components/cartstyle.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harsh17112000/stripe_inreact_node/HEAD/client/src/components/cartstyle.css -------------------------------------------------------------------------------- /client/src/components/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harsh17112000/stripe_inreact_node/HEAD/client/src/components/style.css -------------------------------------------------------------------------------- /client/src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harsh17112000/stripe_inreact_node/HEAD/client/src/index.css -------------------------------------------------------------------------------- /client/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harsh17112000/stripe_inreact_node/HEAD/client/src/index.js -------------------------------------------------------------------------------- /client/src/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harsh17112000/stripe_inreact_node/HEAD/client/src/logo.svg -------------------------------------------------------------------------------- /client/src/redux/app/store.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harsh17112000/stripe_inreact_node/HEAD/client/src/redux/app/store.js -------------------------------------------------------------------------------- /client/src/redux/features/cartSlice.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harsh17112000/stripe_inreact_node/HEAD/client/src/redux/features/cartSlice.js -------------------------------------------------------------------------------- /client/src/reportWebVitals.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harsh17112000/stripe_inreact_node/HEAD/client/src/reportWebVitals.js -------------------------------------------------------------------------------- /client/src/setupTests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harsh17112000/stripe_inreact_node/HEAD/client/src/setupTests.js -------------------------------------------------------------------------------- /server/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | 3 | .env -------------------------------------------------------------------------------- /server/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harsh17112000/stripe_inreact_node/HEAD/server/app.js -------------------------------------------------------------------------------- /server/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harsh17112000/stripe_inreact_node/HEAD/server/package-lock.json -------------------------------------------------------------------------------- /server/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harsh17112000/stripe_inreact_node/HEAD/server/package.json --------------------------------------------------------------------------------