├── .eslintrc.json ├── .gitignore ├── .npmrc ├── .prettierrc.json ├── README.md ├── jest.config.js ├── jest.setup.js ├── next.config.js ├── package.json ├── public ├── favicon.ico └── fonts │ ├── carter_one.ttf │ └── fredoka.ttf ├── sandbox.config.json ├── src ├── assets │ ├── animation │ │ ├── flow1.svg │ │ ├── flow2.svg │ │ ├── flow3.svg │ │ ├── rotate1.svg │ │ ├── rotate2.svg │ │ ├── rotate3.svg │ │ └── unlock.json │ ├── chevron-left-box.svg │ ├── chevron-right-box.svg │ ├── chevron-right.svg │ ├── chevron-up.svg │ ├── fast-forward.svg │ ├── invest.svg │ ├── loading-circle.svg │ ├── manager.svg │ ├── star.svg │ └── tier-logos │ │ ├── cryengine.svg │ │ ├── customengine.svg │ │ ├── next.svg │ │ ├── quantum.svg │ │ ├── ruby.svg │ │ ├── unity.svg │ │ ├── unreal.svg │ │ ├── vue.svg │ │ └── wordpress.svg ├── components │ ├── Application.js │ ├── ApprovalModal.js │ ├── BossFloor.js │ ├── BossFloorButton.js │ ├── Building.js │ ├── ChevronAnimation.js │ ├── ConstructionModal.js │ ├── GameStartModal.js │ ├── InvestButton.js │ ├── InvestButton.test.js │ ├── Layout.js │ ├── LoadingToast.js │ ├── ManagerButton.js │ ├── ManagerModal.js │ ├── Milestones.js │ ├── Milestones.test.js │ ├── MoneyButton.js │ ├── MoneyButton.test.js │ ├── MoneyButtonAnimation.js │ ├── MoneyDisplay.js │ ├── MoneyDisplay.test.js │ ├── NameForm.js │ ├── Navigation.js │ ├── NavigationButton.js │ ├── PopupText.js │ ├── Product.js │ ├── ProgressBar.js │ ├── ProgressBar.test.js │ ├── ProgressBarAnimation.js │ ├── ProgressStars.js │ ├── StyledPageSection.js │ ├── ThemeSwitch.js │ ├── Tier.js │ ├── TierLocked.js │ ├── TierLogo.js │ ├── TierTimer.js │ ├── TutorialModal.js │ └── WalletConnect.js ├── pages │ ├── _app.js │ ├── _document.js │ ├── api │ │ ├── time │ │ │ └── get-time.js │ │ └── wagmi │ │ │ └── ConfigureChains.js │ ├── floor │ │ └── [index].js │ └── index.js ├── utils │ ├── fetch-time.js │ ├── format-numbers.js │ ├── idle-timer.js │ └── ordinal-suffix.js └── zustand │ ├── speedSheet.js │ ├── store.js │ └── tierData.js └── styles.js /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Satttoshi/idle-boss/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Satttoshi/idle-boss/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- 1 | legacy-peer-deps=true -------------------------------------------------------------------------------- /.prettierrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Satttoshi/idle-boss/HEAD/.prettierrc.json -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Satttoshi/idle-boss/HEAD/README.md -------------------------------------------------------------------------------- /jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Satttoshi/idle-boss/HEAD/jest.config.js -------------------------------------------------------------------------------- /jest.setup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Satttoshi/idle-boss/HEAD/jest.setup.js -------------------------------------------------------------------------------- /next.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Satttoshi/idle-boss/HEAD/next.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Satttoshi/idle-boss/HEAD/package.json -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Satttoshi/idle-boss/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/fonts/carter_one.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Satttoshi/idle-boss/HEAD/public/fonts/carter_one.ttf -------------------------------------------------------------------------------- /public/fonts/fredoka.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Satttoshi/idle-boss/HEAD/public/fonts/fredoka.ttf -------------------------------------------------------------------------------- /sandbox.config.json: -------------------------------------------------------------------------------- 1 | { "template": "next" } 2 | -------------------------------------------------------------------------------- /src/assets/animation/flow1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Satttoshi/idle-boss/HEAD/src/assets/animation/flow1.svg -------------------------------------------------------------------------------- /src/assets/animation/flow2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Satttoshi/idle-boss/HEAD/src/assets/animation/flow2.svg -------------------------------------------------------------------------------- /src/assets/animation/flow3.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Satttoshi/idle-boss/HEAD/src/assets/animation/flow3.svg -------------------------------------------------------------------------------- /src/assets/animation/rotate1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Satttoshi/idle-boss/HEAD/src/assets/animation/rotate1.svg -------------------------------------------------------------------------------- /src/assets/animation/rotate2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Satttoshi/idle-boss/HEAD/src/assets/animation/rotate2.svg -------------------------------------------------------------------------------- /src/assets/animation/rotate3.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Satttoshi/idle-boss/HEAD/src/assets/animation/rotate3.svg -------------------------------------------------------------------------------- /src/assets/animation/unlock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Satttoshi/idle-boss/HEAD/src/assets/animation/unlock.json -------------------------------------------------------------------------------- /src/assets/chevron-left-box.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Satttoshi/idle-boss/HEAD/src/assets/chevron-left-box.svg -------------------------------------------------------------------------------- /src/assets/chevron-right-box.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Satttoshi/idle-boss/HEAD/src/assets/chevron-right-box.svg -------------------------------------------------------------------------------- /src/assets/chevron-right.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Satttoshi/idle-boss/HEAD/src/assets/chevron-right.svg -------------------------------------------------------------------------------- /src/assets/chevron-up.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Satttoshi/idle-boss/HEAD/src/assets/chevron-up.svg -------------------------------------------------------------------------------- /src/assets/fast-forward.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Satttoshi/idle-boss/HEAD/src/assets/fast-forward.svg -------------------------------------------------------------------------------- /src/assets/invest.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Satttoshi/idle-boss/HEAD/src/assets/invest.svg -------------------------------------------------------------------------------- /src/assets/loading-circle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Satttoshi/idle-boss/HEAD/src/assets/loading-circle.svg -------------------------------------------------------------------------------- /src/assets/manager.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Satttoshi/idle-boss/HEAD/src/assets/manager.svg -------------------------------------------------------------------------------- /src/assets/star.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Satttoshi/idle-boss/HEAD/src/assets/star.svg -------------------------------------------------------------------------------- /src/assets/tier-logos/cryengine.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Satttoshi/idle-boss/HEAD/src/assets/tier-logos/cryengine.svg -------------------------------------------------------------------------------- /src/assets/tier-logos/customengine.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Satttoshi/idle-boss/HEAD/src/assets/tier-logos/customengine.svg -------------------------------------------------------------------------------- /src/assets/tier-logos/next.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Satttoshi/idle-boss/HEAD/src/assets/tier-logos/next.svg -------------------------------------------------------------------------------- /src/assets/tier-logos/quantum.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Satttoshi/idle-boss/HEAD/src/assets/tier-logos/quantum.svg -------------------------------------------------------------------------------- /src/assets/tier-logos/ruby.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Satttoshi/idle-boss/HEAD/src/assets/tier-logos/ruby.svg -------------------------------------------------------------------------------- /src/assets/tier-logos/unity.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Satttoshi/idle-boss/HEAD/src/assets/tier-logos/unity.svg -------------------------------------------------------------------------------- /src/assets/tier-logos/unreal.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Satttoshi/idle-boss/HEAD/src/assets/tier-logos/unreal.svg -------------------------------------------------------------------------------- /src/assets/tier-logos/vue.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Satttoshi/idle-boss/HEAD/src/assets/tier-logos/vue.svg -------------------------------------------------------------------------------- /src/assets/tier-logos/wordpress.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Satttoshi/idle-boss/HEAD/src/assets/tier-logos/wordpress.svg -------------------------------------------------------------------------------- /src/components/Application.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Satttoshi/idle-boss/HEAD/src/components/Application.js -------------------------------------------------------------------------------- /src/components/ApprovalModal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Satttoshi/idle-boss/HEAD/src/components/ApprovalModal.js -------------------------------------------------------------------------------- /src/components/BossFloor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Satttoshi/idle-boss/HEAD/src/components/BossFloor.js -------------------------------------------------------------------------------- /src/components/BossFloorButton.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Satttoshi/idle-boss/HEAD/src/components/BossFloorButton.js -------------------------------------------------------------------------------- /src/components/Building.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Satttoshi/idle-boss/HEAD/src/components/Building.js -------------------------------------------------------------------------------- /src/components/ChevronAnimation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Satttoshi/idle-boss/HEAD/src/components/ChevronAnimation.js -------------------------------------------------------------------------------- /src/components/ConstructionModal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Satttoshi/idle-boss/HEAD/src/components/ConstructionModal.js -------------------------------------------------------------------------------- /src/components/GameStartModal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Satttoshi/idle-boss/HEAD/src/components/GameStartModal.js -------------------------------------------------------------------------------- /src/components/InvestButton.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Satttoshi/idle-boss/HEAD/src/components/InvestButton.js -------------------------------------------------------------------------------- /src/components/InvestButton.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Satttoshi/idle-boss/HEAD/src/components/InvestButton.test.js -------------------------------------------------------------------------------- /src/components/Layout.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Satttoshi/idle-boss/HEAD/src/components/Layout.js -------------------------------------------------------------------------------- /src/components/LoadingToast.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Satttoshi/idle-boss/HEAD/src/components/LoadingToast.js -------------------------------------------------------------------------------- /src/components/ManagerButton.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Satttoshi/idle-boss/HEAD/src/components/ManagerButton.js -------------------------------------------------------------------------------- /src/components/ManagerModal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Satttoshi/idle-boss/HEAD/src/components/ManagerModal.js -------------------------------------------------------------------------------- /src/components/Milestones.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Satttoshi/idle-boss/HEAD/src/components/Milestones.js -------------------------------------------------------------------------------- /src/components/Milestones.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Satttoshi/idle-boss/HEAD/src/components/Milestones.test.js -------------------------------------------------------------------------------- /src/components/MoneyButton.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Satttoshi/idle-boss/HEAD/src/components/MoneyButton.js -------------------------------------------------------------------------------- /src/components/MoneyButton.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Satttoshi/idle-boss/HEAD/src/components/MoneyButton.test.js -------------------------------------------------------------------------------- /src/components/MoneyButtonAnimation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Satttoshi/idle-boss/HEAD/src/components/MoneyButtonAnimation.js -------------------------------------------------------------------------------- /src/components/MoneyDisplay.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Satttoshi/idle-boss/HEAD/src/components/MoneyDisplay.js -------------------------------------------------------------------------------- /src/components/MoneyDisplay.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Satttoshi/idle-boss/HEAD/src/components/MoneyDisplay.test.js -------------------------------------------------------------------------------- /src/components/NameForm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Satttoshi/idle-boss/HEAD/src/components/NameForm.js -------------------------------------------------------------------------------- /src/components/Navigation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Satttoshi/idle-boss/HEAD/src/components/Navigation.js -------------------------------------------------------------------------------- /src/components/NavigationButton.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Satttoshi/idle-boss/HEAD/src/components/NavigationButton.js -------------------------------------------------------------------------------- /src/components/PopupText.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Satttoshi/idle-boss/HEAD/src/components/PopupText.js -------------------------------------------------------------------------------- /src/components/Product.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Satttoshi/idle-boss/HEAD/src/components/Product.js -------------------------------------------------------------------------------- /src/components/ProgressBar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Satttoshi/idle-boss/HEAD/src/components/ProgressBar.js -------------------------------------------------------------------------------- /src/components/ProgressBar.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Satttoshi/idle-boss/HEAD/src/components/ProgressBar.test.js -------------------------------------------------------------------------------- /src/components/ProgressBarAnimation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Satttoshi/idle-boss/HEAD/src/components/ProgressBarAnimation.js -------------------------------------------------------------------------------- /src/components/ProgressStars.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Satttoshi/idle-boss/HEAD/src/components/ProgressStars.js -------------------------------------------------------------------------------- /src/components/StyledPageSection.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Satttoshi/idle-boss/HEAD/src/components/StyledPageSection.js -------------------------------------------------------------------------------- /src/components/ThemeSwitch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Satttoshi/idle-boss/HEAD/src/components/ThemeSwitch.js -------------------------------------------------------------------------------- /src/components/Tier.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Satttoshi/idle-boss/HEAD/src/components/Tier.js -------------------------------------------------------------------------------- /src/components/TierLocked.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Satttoshi/idle-boss/HEAD/src/components/TierLocked.js -------------------------------------------------------------------------------- /src/components/TierLogo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Satttoshi/idle-boss/HEAD/src/components/TierLogo.js -------------------------------------------------------------------------------- /src/components/TierTimer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Satttoshi/idle-boss/HEAD/src/components/TierTimer.js -------------------------------------------------------------------------------- /src/components/TutorialModal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Satttoshi/idle-boss/HEAD/src/components/TutorialModal.js -------------------------------------------------------------------------------- /src/components/WalletConnect.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Satttoshi/idle-boss/HEAD/src/components/WalletConnect.js -------------------------------------------------------------------------------- /src/pages/_app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Satttoshi/idle-boss/HEAD/src/pages/_app.js -------------------------------------------------------------------------------- /src/pages/_document.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Satttoshi/idle-boss/HEAD/src/pages/_document.js -------------------------------------------------------------------------------- /src/pages/api/time/get-time.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Satttoshi/idle-boss/HEAD/src/pages/api/time/get-time.js -------------------------------------------------------------------------------- /src/pages/api/wagmi/ConfigureChains.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Satttoshi/idle-boss/HEAD/src/pages/api/wagmi/ConfigureChains.js -------------------------------------------------------------------------------- /src/pages/floor/[index].js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Satttoshi/idle-boss/HEAD/src/pages/floor/[index].js -------------------------------------------------------------------------------- /src/pages/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Satttoshi/idle-boss/HEAD/src/pages/index.js -------------------------------------------------------------------------------- /src/utils/fetch-time.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Satttoshi/idle-boss/HEAD/src/utils/fetch-time.js -------------------------------------------------------------------------------- /src/utils/format-numbers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Satttoshi/idle-boss/HEAD/src/utils/format-numbers.js -------------------------------------------------------------------------------- /src/utils/idle-timer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Satttoshi/idle-boss/HEAD/src/utils/idle-timer.js -------------------------------------------------------------------------------- /src/utils/ordinal-suffix.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Satttoshi/idle-boss/HEAD/src/utils/ordinal-suffix.js -------------------------------------------------------------------------------- /src/zustand/speedSheet.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Satttoshi/idle-boss/HEAD/src/zustand/speedSheet.js -------------------------------------------------------------------------------- /src/zustand/store.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Satttoshi/idle-boss/HEAD/src/zustand/store.js -------------------------------------------------------------------------------- /src/zustand/tierData.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Satttoshi/idle-boss/HEAD/src/zustand/tierData.js -------------------------------------------------------------------------------- /styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Satttoshi/idle-boss/HEAD/styles.js --------------------------------------------------------------------------------