├── README.md ├── node_backend ├── .gitignore ├── app.js ├── models │ └── user.js ├── routes │ └── api.js ├── server.js ├── slot-machine │ └── slot-machine.js └── yarn.lock ├── package.json ├── src ├── .DS_Store ├── app │ ├── app.js │ ├── components │ │ └── SlotMachine.js │ ├── containers │ │ ├── Home.js │ │ ├── LandingPage.js │ │ ├── Login.js │ │ └── SignUp.js │ ├── index.js │ └── services │ │ └── user.js ├── css │ ├── bootstrap-grid.css │ ├── main.css │ └── slot-machine.css ├── dist │ ├── 0800e96947b15c310ff6068b90dc9ed7.gif │ ├── 6d9e477f737025fdcfbe98f8714eea3d.png │ └── app.bundle.js ├── images │ ├── lottery.gif │ ├── none.png │ ├── reel-1.gif │ ├── reel-2.gif │ ├── reel-3.gif │ └── reel-anim.gif └── index.html ├── webpack-prod.config.js ├── webpack.config.js └── yarn.lock /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omaidf/Bitcoin-Slot-Casino/HEAD/README.md -------------------------------------------------------------------------------- /node_backend/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /node_backend/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omaidf/Bitcoin-Slot-Casino/HEAD/node_backend/app.js -------------------------------------------------------------------------------- /node_backend/models/user.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omaidf/Bitcoin-Slot-Casino/HEAD/node_backend/models/user.js -------------------------------------------------------------------------------- /node_backend/routes/api.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omaidf/Bitcoin-Slot-Casino/HEAD/node_backend/routes/api.js -------------------------------------------------------------------------------- /node_backend/server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omaidf/Bitcoin-Slot-Casino/HEAD/node_backend/server.js -------------------------------------------------------------------------------- /node_backend/slot-machine/slot-machine.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omaidf/Bitcoin-Slot-Casino/HEAD/node_backend/slot-machine/slot-machine.js -------------------------------------------------------------------------------- /node_backend/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omaidf/Bitcoin-Slot-Casino/HEAD/node_backend/yarn.lock -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omaidf/Bitcoin-Slot-Casino/HEAD/package.json -------------------------------------------------------------------------------- /src/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omaidf/Bitcoin-Slot-Casino/HEAD/src/.DS_Store -------------------------------------------------------------------------------- /src/app/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omaidf/Bitcoin-Slot-Casino/HEAD/src/app/app.js -------------------------------------------------------------------------------- /src/app/components/SlotMachine.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omaidf/Bitcoin-Slot-Casino/HEAD/src/app/components/SlotMachine.js -------------------------------------------------------------------------------- /src/app/containers/Home.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omaidf/Bitcoin-Slot-Casino/HEAD/src/app/containers/Home.js -------------------------------------------------------------------------------- /src/app/containers/LandingPage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omaidf/Bitcoin-Slot-Casino/HEAD/src/app/containers/LandingPage.js -------------------------------------------------------------------------------- /src/app/containers/Login.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omaidf/Bitcoin-Slot-Casino/HEAD/src/app/containers/Login.js -------------------------------------------------------------------------------- /src/app/containers/SignUp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omaidf/Bitcoin-Slot-Casino/HEAD/src/app/containers/SignUp.js -------------------------------------------------------------------------------- /src/app/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omaidf/Bitcoin-Slot-Casino/HEAD/src/app/index.js -------------------------------------------------------------------------------- /src/app/services/user.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omaidf/Bitcoin-Slot-Casino/HEAD/src/app/services/user.js -------------------------------------------------------------------------------- /src/css/bootstrap-grid.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omaidf/Bitcoin-Slot-Casino/HEAD/src/css/bootstrap-grid.css -------------------------------------------------------------------------------- /src/css/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omaidf/Bitcoin-Slot-Casino/HEAD/src/css/main.css -------------------------------------------------------------------------------- /src/css/slot-machine.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omaidf/Bitcoin-Slot-Casino/HEAD/src/css/slot-machine.css -------------------------------------------------------------------------------- /src/dist/0800e96947b15c310ff6068b90dc9ed7.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omaidf/Bitcoin-Slot-Casino/HEAD/src/dist/0800e96947b15c310ff6068b90dc9ed7.gif -------------------------------------------------------------------------------- /src/dist/6d9e477f737025fdcfbe98f8714eea3d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omaidf/Bitcoin-Slot-Casino/HEAD/src/dist/6d9e477f737025fdcfbe98f8714eea3d.png -------------------------------------------------------------------------------- /src/dist/app.bundle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omaidf/Bitcoin-Slot-Casino/HEAD/src/dist/app.bundle.js -------------------------------------------------------------------------------- /src/images/lottery.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omaidf/Bitcoin-Slot-Casino/HEAD/src/images/lottery.gif -------------------------------------------------------------------------------- /src/images/none.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omaidf/Bitcoin-Slot-Casino/HEAD/src/images/none.png -------------------------------------------------------------------------------- /src/images/reel-1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omaidf/Bitcoin-Slot-Casino/HEAD/src/images/reel-1.gif -------------------------------------------------------------------------------- /src/images/reel-2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omaidf/Bitcoin-Slot-Casino/HEAD/src/images/reel-2.gif -------------------------------------------------------------------------------- /src/images/reel-3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omaidf/Bitcoin-Slot-Casino/HEAD/src/images/reel-3.gif -------------------------------------------------------------------------------- /src/images/reel-anim.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omaidf/Bitcoin-Slot-Casino/HEAD/src/images/reel-anim.gif -------------------------------------------------------------------------------- /src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omaidf/Bitcoin-Slot-Casino/HEAD/src/index.html -------------------------------------------------------------------------------- /webpack-prod.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omaidf/Bitcoin-Slot-Casino/HEAD/webpack-prod.config.js -------------------------------------------------------------------------------- /webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omaidf/Bitcoin-Slot-Casino/HEAD/webpack.config.js -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omaidf/Bitcoin-Slot-Casino/HEAD/yarn.lock --------------------------------------------------------------------------------