├── .gitignore ├── README.md ├── package.json ├── public ├── 404.html ├── favicon.ico ├── index.html └── robots.txt └── src ├── App.jsx ├── assets ├── img │ ├── coins │ │ ├── btc.svg │ │ ├── eth.svg │ │ └── shiba.svg │ ├── doge │ │ ├── byStep.svg │ │ ├── jump.svg │ │ └── step.svg │ ├── github.svg │ ├── howToPlay │ │ ├── 1.png │ │ ├── 2.png │ │ ├── 3.png │ │ ├── 4.png │ │ └── 5.png │ ├── musicIco │ │ ├── musicOff.svg │ │ └── musicOn.svg │ ├── platform.svg │ ├── stars.svg │ ├── telegram.svg │ └── toTheMoon.jpg └── sounds │ ├── coinPick.mp3 │ ├── nyanDogMain.mp3 │ ├── nyanDogStarts.mp3 │ └── shibaInu.mp3 ├── components ├── Coin │ ├── index.jsx │ └── style.scss ├── Doge │ ├── index.jsx │ └── style.scss ├── Final │ ├── index.jsx │ └── style.scss ├── HowToPlay │ ├── index.jsx │ └── style.scss ├── Platform │ ├── index.jsx │ └── style.scss ├── Stars │ ├── index.jsx │ └── style.scss ├── Top5 │ ├── index.jsx │ └── style.scss └── index.js ├── index.js ├── index.scss ├── pages ├── Auth │ ├── index.jsx │ └── style.scss ├── Game │ ├── index.jsx │ └── style.scss ├── Menu │ ├── index.jsx │ └── style.scss ├── PreGame │ ├── index.jsx │ └── style.scss ├── Title │ ├── index.jsx │ └── style.scss └── index.js ├── redux ├── actions │ ├── coins.js │ ├── doge.js │ ├── environment.js │ └── user.js ├── reducers │ ├── coins.js │ ├── doge.js │ ├── environment.js │ ├── index.js │ └── user.js └── store.js └── utils └── formulas.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexeyinn/reactGame-2theMoon/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexeyinn/reactGame-2theMoon/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexeyinn/reactGame-2theMoon/HEAD/package.json -------------------------------------------------------------------------------- /public/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexeyinn/reactGame-2theMoon/HEAD/public/404.html -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexeyinn/reactGame-2theMoon/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexeyinn/reactGame-2theMoon/HEAD/public/index.html -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexeyinn/reactGame-2theMoon/HEAD/public/robots.txt -------------------------------------------------------------------------------- /src/App.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexeyinn/reactGame-2theMoon/HEAD/src/App.jsx -------------------------------------------------------------------------------- /src/assets/img/coins/btc.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexeyinn/reactGame-2theMoon/HEAD/src/assets/img/coins/btc.svg -------------------------------------------------------------------------------- /src/assets/img/coins/eth.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexeyinn/reactGame-2theMoon/HEAD/src/assets/img/coins/eth.svg -------------------------------------------------------------------------------- /src/assets/img/coins/shiba.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexeyinn/reactGame-2theMoon/HEAD/src/assets/img/coins/shiba.svg -------------------------------------------------------------------------------- /src/assets/img/doge/byStep.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexeyinn/reactGame-2theMoon/HEAD/src/assets/img/doge/byStep.svg -------------------------------------------------------------------------------- /src/assets/img/doge/jump.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexeyinn/reactGame-2theMoon/HEAD/src/assets/img/doge/jump.svg -------------------------------------------------------------------------------- /src/assets/img/doge/step.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexeyinn/reactGame-2theMoon/HEAD/src/assets/img/doge/step.svg -------------------------------------------------------------------------------- /src/assets/img/github.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexeyinn/reactGame-2theMoon/HEAD/src/assets/img/github.svg -------------------------------------------------------------------------------- /src/assets/img/howToPlay/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexeyinn/reactGame-2theMoon/HEAD/src/assets/img/howToPlay/1.png -------------------------------------------------------------------------------- /src/assets/img/howToPlay/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexeyinn/reactGame-2theMoon/HEAD/src/assets/img/howToPlay/2.png -------------------------------------------------------------------------------- /src/assets/img/howToPlay/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexeyinn/reactGame-2theMoon/HEAD/src/assets/img/howToPlay/3.png -------------------------------------------------------------------------------- /src/assets/img/howToPlay/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexeyinn/reactGame-2theMoon/HEAD/src/assets/img/howToPlay/4.png -------------------------------------------------------------------------------- /src/assets/img/howToPlay/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexeyinn/reactGame-2theMoon/HEAD/src/assets/img/howToPlay/5.png -------------------------------------------------------------------------------- /src/assets/img/musicIco/musicOff.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexeyinn/reactGame-2theMoon/HEAD/src/assets/img/musicIco/musicOff.svg -------------------------------------------------------------------------------- /src/assets/img/musicIco/musicOn.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexeyinn/reactGame-2theMoon/HEAD/src/assets/img/musicIco/musicOn.svg -------------------------------------------------------------------------------- /src/assets/img/platform.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexeyinn/reactGame-2theMoon/HEAD/src/assets/img/platform.svg -------------------------------------------------------------------------------- /src/assets/img/stars.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexeyinn/reactGame-2theMoon/HEAD/src/assets/img/stars.svg -------------------------------------------------------------------------------- /src/assets/img/telegram.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexeyinn/reactGame-2theMoon/HEAD/src/assets/img/telegram.svg -------------------------------------------------------------------------------- /src/assets/img/toTheMoon.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexeyinn/reactGame-2theMoon/HEAD/src/assets/img/toTheMoon.jpg -------------------------------------------------------------------------------- /src/assets/sounds/coinPick.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexeyinn/reactGame-2theMoon/HEAD/src/assets/sounds/coinPick.mp3 -------------------------------------------------------------------------------- /src/assets/sounds/nyanDogMain.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexeyinn/reactGame-2theMoon/HEAD/src/assets/sounds/nyanDogMain.mp3 -------------------------------------------------------------------------------- /src/assets/sounds/nyanDogStarts.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexeyinn/reactGame-2theMoon/HEAD/src/assets/sounds/nyanDogStarts.mp3 -------------------------------------------------------------------------------- /src/assets/sounds/shibaInu.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexeyinn/reactGame-2theMoon/HEAD/src/assets/sounds/shibaInu.mp3 -------------------------------------------------------------------------------- /src/components/Coin/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexeyinn/reactGame-2theMoon/HEAD/src/components/Coin/index.jsx -------------------------------------------------------------------------------- /src/components/Coin/style.scss: -------------------------------------------------------------------------------- 1 | .coin { 2 | width: 3vw; 3 | } 4 | -------------------------------------------------------------------------------- /src/components/Doge/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexeyinn/reactGame-2theMoon/HEAD/src/components/Doge/index.jsx -------------------------------------------------------------------------------- /src/components/Doge/style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexeyinn/reactGame-2theMoon/HEAD/src/components/Doge/style.scss -------------------------------------------------------------------------------- /src/components/Final/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexeyinn/reactGame-2theMoon/HEAD/src/components/Final/index.jsx -------------------------------------------------------------------------------- /src/components/Final/style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexeyinn/reactGame-2theMoon/HEAD/src/components/Final/style.scss -------------------------------------------------------------------------------- /src/components/HowToPlay/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexeyinn/reactGame-2theMoon/HEAD/src/components/HowToPlay/index.jsx -------------------------------------------------------------------------------- /src/components/HowToPlay/style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexeyinn/reactGame-2theMoon/HEAD/src/components/HowToPlay/style.scss -------------------------------------------------------------------------------- /src/components/Platform/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexeyinn/reactGame-2theMoon/HEAD/src/components/Platform/index.jsx -------------------------------------------------------------------------------- /src/components/Platform/style.scss: -------------------------------------------------------------------------------- 1 | .platform { 2 | width: 20vw; 3 | transition: top 0.1s linear; 4 | } 5 | -------------------------------------------------------------------------------- /src/components/Stars/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexeyinn/reactGame-2theMoon/HEAD/src/components/Stars/index.jsx -------------------------------------------------------------------------------- /src/components/Stars/style.scss: -------------------------------------------------------------------------------- 1 | .stars { 2 | height: 15vh; 3 | } 4 | -------------------------------------------------------------------------------- /src/components/Top5/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexeyinn/reactGame-2theMoon/HEAD/src/components/Top5/index.jsx -------------------------------------------------------------------------------- /src/components/Top5/style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexeyinn/reactGame-2theMoon/HEAD/src/components/Top5/style.scss -------------------------------------------------------------------------------- /src/components/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexeyinn/reactGame-2theMoon/HEAD/src/components/index.js -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexeyinn/reactGame-2theMoon/HEAD/src/index.js -------------------------------------------------------------------------------- /src/index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexeyinn/reactGame-2theMoon/HEAD/src/index.scss -------------------------------------------------------------------------------- /src/pages/Auth/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexeyinn/reactGame-2theMoon/HEAD/src/pages/Auth/index.jsx -------------------------------------------------------------------------------- /src/pages/Auth/style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexeyinn/reactGame-2theMoon/HEAD/src/pages/Auth/style.scss -------------------------------------------------------------------------------- /src/pages/Game/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexeyinn/reactGame-2theMoon/HEAD/src/pages/Game/index.jsx -------------------------------------------------------------------------------- /src/pages/Game/style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexeyinn/reactGame-2theMoon/HEAD/src/pages/Game/style.scss -------------------------------------------------------------------------------- /src/pages/Menu/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexeyinn/reactGame-2theMoon/HEAD/src/pages/Menu/index.jsx -------------------------------------------------------------------------------- /src/pages/Menu/style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexeyinn/reactGame-2theMoon/HEAD/src/pages/Menu/style.scss -------------------------------------------------------------------------------- /src/pages/PreGame/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexeyinn/reactGame-2theMoon/HEAD/src/pages/PreGame/index.jsx -------------------------------------------------------------------------------- /src/pages/PreGame/style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexeyinn/reactGame-2theMoon/HEAD/src/pages/PreGame/style.scss -------------------------------------------------------------------------------- /src/pages/Title/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexeyinn/reactGame-2theMoon/HEAD/src/pages/Title/index.jsx -------------------------------------------------------------------------------- /src/pages/Title/style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexeyinn/reactGame-2theMoon/HEAD/src/pages/Title/style.scss -------------------------------------------------------------------------------- /src/pages/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexeyinn/reactGame-2theMoon/HEAD/src/pages/index.js -------------------------------------------------------------------------------- /src/redux/actions/coins.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexeyinn/reactGame-2theMoon/HEAD/src/redux/actions/coins.js -------------------------------------------------------------------------------- /src/redux/actions/doge.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexeyinn/reactGame-2theMoon/HEAD/src/redux/actions/doge.js -------------------------------------------------------------------------------- /src/redux/actions/environment.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexeyinn/reactGame-2theMoon/HEAD/src/redux/actions/environment.js -------------------------------------------------------------------------------- /src/redux/actions/user.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexeyinn/reactGame-2theMoon/HEAD/src/redux/actions/user.js -------------------------------------------------------------------------------- /src/redux/reducers/coins.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexeyinn/reactGame-2theMoon/HEAD/src/redux/reducers/coins.js -------------------------------------------------------------------------------- /src/redux/reducers/doge.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexeyinn/reactGame-2theMoon/HEAD/src/redux/reducers/doge.js -------------------------------------------------------------------------------- /src/redux/reducers/environment.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexeyinn/reactGame-2theMoon/HEAD/src/redux/reducers/environment.js -------------------------------------------------------------------------------- /src/redux/reducers/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexeyinn/reactGame-2theMoon/HEAD/src/redux/reducers/index.js -------------------------------------------------------------------------------- /src/redux/reducers/user.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexeyinn/reactGame-2theMoon/HEAD/src/redux/reducers/user.js -------------------------------------------------------------------------------- /src/redux/store.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexeyinn/reactGame-2theMoon/HEAD/src/redux/store.js -------------------------------------------------------------------------------- /src/utils/formulas.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexeyinn/reactGame-2theMoon/HEAD/src/utils/formulas.js --------------------------------------------------------------------------------