├── .editorconfig ├── .gitignore ├── .travis.yml ├── .vscode ├── launch.json └── settings.json ├── CHANGELOG.md ├── README.md ├── assets ├── Paypal-button.png ├── Paypal-button@2x.png └── Paypal-button@3x.png ├── front ├── .editorconfig ├── .eslintrc.json ├── .nvmrc ├── .prettierignore ├── .prettierrc ├── .yarnclean ├── coverage │ ├── clover.xml │ ├── coverage-final.json │ ├── lcov-report │ │ ├── base.css │ │ ├── components │ │ │ ├── backToTop │ │ │ │ ├── BackToTop.tsx.html │ │ │ │ ├── backToTopButton │ │ │ │ │ ├── BackToTopButton.tsx.html │ │ │ │ │ ├── UpIcon.tsx.html │ │ │ │ │ ├── index.html │ │ │ │ │ └── styled │ │ │ │ │ │ ├── WithRightMargin.tsx.html │ │ │ │ │ │ └── index.html │ │ │ │ └── index.html │ │ │ ├── loadingContent │ │ │ │ ├── LoadingContent.tsx.html │ │ │ │ └── index.html │ │ │ ├── mainLayout │ │ │ │ ├── MainLayout.tsx.html │ │ │ │ └── index.html │ │ │ ├── navigation │ │ │ │ ├── NavigationBar.tsx.html │ │ │ │ ├── index.html │ │ │ │ └── index.ts.html │ │ │ └── scrollToTop │ │ │ │ ├── ScrollToTop.tsx.html │ │ │ │ └── index.html │ │ ├── config │ │ │ ├── index.html │ │ │ └── navigation.ts.html │ │ ├── contexts │ │ │ ├── auth │ │ │ │ ├── index.html │ │ │ │ └── index.tsx.html │ │ │ └── withDevTools │ │ │ │ ├── index.html │ │ │ │ └── index.ts.html │ │ ├── index.html │ │ ├── prettify.css │ │ ├── prettify.js │ │ ├── services │ │ │ └── auth │ │ │ │ ├── index.html │ │ │ │ └── index.ts.html │ │ ├── sort-arrow-sprite.png │ │ ├── sorter.js │ │ ├── src │ │ │ ├── components │ │ │ │ ├── backToTop │ │ │ │ │ ├── BackToTop.tsx.html │ │ │ │ │ ├── backToTopButton │ │ │ │ │ │ ├── BackToTopButton.tsx.html │ │ │ │ │ │ ├── UpIcon.tsx.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── styled │ │ │ │ │ │ │ ├── WithRightMargin.tsx.html │ │ │ │ │ │ │ └── index.html │ │ │ │ │ └── index.html │ │ │ │ ├── fadeInEntrance │ │ │ │ │ ├── FadeInEntrance.tsx.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── index.ts.html │ │ │ │ │ └── styled │ │ │ │ │ │ ├── FadeInDiv.tsx.html │ │ │ │ │ │ └── index.html │ │ │ │ ├── loadingContent │ │ │ │ │ ├── LoadingContent.tsx.html │ │ │ │ │ └── index.html │ │ │ │ ├── logoutRoute │ │ │ │ │ ├── LogoutRoute.tsx.html │ │ │ │ │ ├── index.html │ │ │ │ │ └── index.ts.html │ │ │ │ ├── mainLayout │ │ │ │ │ ├── MainLayout.tsx.html │ │ │ │ │ └── index.html │ │ │ │ ├── navigation │ │ │ │ │ ├── NavigationBar.tsx.html │ │ │ │ │ ├── index.html │ │ │ │ │ └── index.ts.html │ │ │ │ ├── privateRoute │ │ │ │ │ ├── PrivateRoute.tsx.html │ │ │ │ │ └── index.html │ │ │ │ └── scrollToTop │ │ │ │ │ ├── ScrollToTop.tsx.html │ │ │ │ │ ├── hooks │ │ │ │ │ └── useScrollToTopOnLocationChange │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── index.ts.html │ │ │ │ │ └── index.html │ │ │ ├── config │ │ │ │ ├── appConfig.ts.html │ │ │ │ ├── index.html │ │ │ │ └── navigation.ts.html │ │ │ ├── contexts │ │ │ │ ├── auth │ │ │ │ │ ├── hook │ │ │ │ │ │ ├── authContextHook.ts.html │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── index.html │ │ │ │ │ └── index.tsx.html │ │ │ │ └── withDevTools │ │ │ │ │ ├── index.html │ │ │ │ │ └── index.ts.html │ │ │ ├── mock │ │ │ │ ├── index.html │ │ │ │ └── userInfo.ts.html │ │ │ ├── pages │ │ │ │ ├── about │ │ │ │ │ ├── About.tsx.html │ │ │ │ │ └── index.html │ │ │ │ ├── home │ │ │ │ │ ├── Home.tsx.html │ │ │ │ │ ├── index.html │ │ │ │ │ └── styled │ │ │ │ │ │ ├── HomeInfo.tsx.html │ │ │ │ │ │ ├── LightNote.tsx.html │ │ │ │ │ │ ├── MainTitle.tsx.html │ │ │ │ │ │ └── index.html │ │ │ │ ├── login │ │ │ │ │ ├── Login.tsx.html │ │ │ │ │ └── index.html │ │ │ │ ├── pageNotFound │ │ │ │ │ ├── PageNotFound.tsx.html │ │ │ │ │ └── index.html │ │ │ │ └── protected │ │ │ │ │ ├── Protected.tsx.html │ │ │ │ │ └── index.html │ │ │ └── services │ │ │ │ ├── API │ │ │ │ ├── fetchTools.ts.html │ │ │ │ └── index.html │ │ │ │ └── auth │ │ │ │ ├── index.html │ │ │ │ └── index.ts.html │ │ └── test │ │ │ ├── index.html │ │ │ └── setupTests.ts.html │ └── lcov.info ├── index.html ├── jest.config.js ├── package.json ├── src │ ├── Root.tsx │ ├── components │ │ ├── backToTop │ │ │ ├── BackToTop.tsx │ │ │ ├── __tests__ │ │ │ │ ├── BackToTop.test.tsx │ │ │ │ └── __snapshots__ │ │ │ │ │ └── BackToTop.test.tsx.snap │ │ │ └── backToTopButton │ │ │ │ ├── BackToTopButton.tsx │ │ │ │ ├── UpIcon.tsx │ │ │ │ ├── __tests__ │ │ │ │ ├── UpIcon.test.tsx │ │ │ │ ├── __snapshots__ │ │ │ │ │ ├── UpIcon.test.tsx.snap │ │ │ │ │ └── backToTopButton.test.tsx.snap │ │ │ │ └── backToTopButton.test.tsx │ │ │ │ └── styled │ │ │ │ └── WithRightMargin.tsx │ │ ├── fadeInEntrance │ │ │ ├── FadeInEntrance.tsx │ │ │ ├── __tests__ │ │ │ │ ├── FadeInEntreance.spec.tsx │ │ │ │ └── __snapshots__ │ │ │ │ │ └── FadeInEntreance.spec.tsx.snap │ │ │ ├── index.ts │ │ │ └── styled │ │ │ │ └── FadeInDiv.tsx │ │ ├── loadingContent │ │ │ ├── LoadingContent.tsx │ │ │ ├── __tests__ │ │ │ │ ├── LoadingContent.test.tsx │ │ │ │ └── __snapshots__ │ │ │ │ │ └── LoadingContent.test.tsx.snap │ │ │ └── index.ts │ │ ├── logoutRoute │ │ │ ├── LogoutRoute.tsx │ │ │ ├── __tests__ │ │ │ │ ├── LogoutRoute.test.tsx │ │ │ │ └── __snapshots__ │ │ │ │ │ └── LogoutRoute.test.tsx.snap │ │ │ └── index.ts │ │ ├── mainLayout │ │ │ ├── MainLayout.tsx │ │ │ ├── __tests__ │ │ │ │ ├── MainLayout.test.tsx │ │ │ │ └── __snapshots__ │ │ │ │ │ └── MainLayout.test.tsx.snap │ │ │ └── index.ts │ │ ├── navigation │ │ │ ├── NavigationBar.tsx │ │ │ ├── __tests__ │ │ │ │ ├── NavigationBar.test.tsx │ │ │ │ └── __snapshots__ │ │ │ │ │ └── NavigationBar.test.tsx.snap │ │ │ └── index.ts │ │ ├── privateRoute │ │ │ ├── PrivateRoute.tsx │ │ │ ├── __tests__ │ │ │ │ ├── PrivateRoute.test.tsx │ │ │ │ └── __snapshots__ │ │ │ │ │ └── PrivateRoute.test.tsx.snap │ │ │ └── index.ts │ │ ├── scrollToTop │ │ │ ├── ScrollToTop.tsx │ │ │ ├── ___tests___ │ │ │ │ ├── ScrolToTop.test.tsx │ │ │ │ └── __snapshots__ │ │ │ │ │ └── ScrolToTop.test.tsx.snap │ │ │ ├── hooks │ │ │ │ └── useScrollToTopOnLocationChange │ │ │ │ │ └── index.ts │ │ │ └── index.ts │ │ └── withSuspense │ │ │ ├── WithSuspense.tsx │ │ │ └── index.ts │ ├── config │ │ ├── appConfig.ts │ │ └── navigation.ts │ ├── contexts │ │ ├── auth │ │ │ ├── hook │ │ │ │ ├── __tests__ │ │ │ │ │ └── authContextHook.spec.ts │ │ │ │ └── authContextHook.ts │ │ │ └── index.tsx │ │ └── withDevTools │ │ │ └── index.ts │ ├── index.html │ ├── index.tsx │ ├── mock │ │ └── userInfo.ts │ ├── pages │ │ ├── about │ │ │ ├── About.tsx │ │ │ ├── __tests__ │ │ │ │ ├── About.test.tsx │ │ │ │ └── __snapshots__ │ │ │ │ │ └── About.test.tsx.snap │ │ │ └── index.ts │ │ ├── home │ │ │ ├── Home.tsx │ │ │ ├── __tests__ │ │ │ │ ├── Home.test.tsx │ │ │ │ └── __snapshots__ │ │ │ │ │ └── Home.test.tsx.snap │ │ │ ├── index.ts │ │ │ └── styled │ │ │ │ ├── HomeInfo.tsx │ │ │ │ ├── LightNote.tsx │ │ │ │ └── MainTitle.tsx │ │ ├── index.ts │ │ ├── login │ │ │ ├── Login.tsx │ │ │ ├── __tests__ │ │ │ │ ├── Login.test.tsx │ │ │ │ └── __snapshots__ │ │ │ │ │ └── Login.test.tsx.snap │ │ │ └── index.ts │ │ ├── pageNotFound │ │ │ ├── PageNotFound.tsx │ │ │ ├── __tests__ │ │ │ │ ├── PageNotFound.test.tsx │ │ │ │ └── __snapshots__ │ │ │ │ │ └── PageNotFound.test.tsx.snap │ │ │ └── index.ts │ │ └── protected │ │ │ ├── Protected.tsx │ │ │ ├── __tests__ │ │ │ ├── Protected.test.tsx │ │ │ └── __snapshots__ │ │ │ │ └── Protected.test.tsx.snap │ │ │ └── index.ts │ ├── routes │ │ ├── MainRoutes.tsx │ │ └── routes.ts │ ├── services │ │ ├── API │ │ │ ├── example.ts │ │ │ └── fetchTools.ts │ │ ├── auth │ │ │ ├── __tests__ │ │ │ │ └── auth.test.ts │ │ │ └── index.ts │ │ ├── getLocationOrigin │ │ │ └── getLocationOrigin.ts │ │ └── sw │ │ │ └── registerServiceWorker.ts │ ├── statics │ │ ├── index-raw.html │ │ └── index.html │ ├── style │ │ └── GlobalStyles.ts │ └── types │ │ ├── auth │ │ └── index.d.ts │ │ └── user │ │ └── index.d.ts ├── test │ ├── __mocks__ │ │ └── fileMock.ts │ ├── mockedRouter.ts │ └── setupTests.ts ├── tsconfig.json ├── webpack.analyze.config.js ├── webpack.dev.config.js ├── webpack.hot.reload.config.js └── webpack.production.config.js ├── preview └── preview.png ├── scripts └── prepareIndexHtml.js ├── server ├── .editorconfig ├── .nvmrc ├── .prettierrc ├── .yarnclean ├── jest.config.js ├── out │ ├── index.js │ ├── lib │ │ └── expressServer.js │ └── middleware │ │ └── errors.js ├── package.json ├── src │ ├── index.ts │ ├── lib │ │ ├── asyncWrap.ts │ │ └── expressServer.ts │ └── middleware │ │ └── errors.ts ├── test │ └── setupTests.ts └── tsconfig.json └── typings ├── globals ├── axios │ ├── index.d.ts │ └── typings.json ├── classnames │ ├── index.d.ts │ └── typings.json ├── jest │ ├── index.d.ts │ └── typings.json ├── js-base64 │ ├── index.d.ts │ └── typings.json ├── modernizr │ ├── index.d.ts │ └── typings.json ├── node │ ├── index.d.ts │ └── typings.json ├── popper.js │ ├── index.d.ts │ └── typings.json ├── react-router-dom │ ├── index.d.ts │ └── typings.json └── recompose │ ├── index.d.ts │ └── typings.json ├── index.d.ts └── modules ├── enzyme ├── index.d.ts └── typings.json ├── react-bootstrap ├── index.d.ts └── typings.json ├── react-motion ├── index.d.ts └── typings.json └── react ├── index.d.ts └── typings.json /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacKentoch/react-bootstrap-webpack-starter/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacKentoch/react-bootstrap-webpack-starter/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacKentoch/react-bootstrap-webpack-starter/HEAD/.travis.yml -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacKentoch/react-bootstrap-webpack-starter/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacKentoch/react-bootstrap-webpack-starter/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacKentoch/react-bootstrap-webpack-starter/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacKentoch/react-bootstrap-webpack-starter/HEAD/README.md -------------------------------------------------------------------------------- /assets/Paypal-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacKentoch/react-bootstrap-webpack-starter/HEAD/assets/Paypal-button.png -------------------------------------------------------------------------------- /assets/Paypal-button@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacKentoch/react-bootstrap-webpack-starter/HEAD/assets/Paypal-button@2x.png -------------------------------------------------------------------------------- /assets/Paypal-button@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacKentoch/react-bootstrap-webpack-starter/HEAD/assets/Paypal-button@3x.png -------------------------------------------------------------------------------- /front/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacKentoch/react-bootstrap-webpack-starter/HEAD/front/.editorconfig -------------------------------------------------------------------------------- /front/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacKentoch/react-bootstrap-webpack-starter/HEAD/front/.eslintrc.json -------------------------------------------------------------------------------- /front/.nvmrc: -------------------------------------------------------------------------------- 1 | 12 2 | -------------------------------------------------------------------------------- /front/.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacKentoch/react-bootstrap-webpack-starter/HEAD/front/.prettierignore -------------------------------------------------------------------------------- /front/.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacKentoch/react-bootstrap-webpack-starter/HEAD/front/.prettierrc -------------------------------------------------------------------------------- /front/.yarnclean: -------------------------------------------------------------------------------- 1 | @types/react-native 2 | -------------------------------------------------------------------------------- /front/coverage/clover.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacKentoch/react-bootstrap-webpack-starter/HEAD/front/coverage/clover.xml -------------------------------------------------------------------------------- /front/coverage/coverage-final.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacKentoch/react-bootstrap-webpack-starter/HEAD/front/coverage/coverage-final.json -------------------------------------------------------------------------------- /front/coverage/lcov-report/base.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacKentoch/react-bootstrap-webpack-starter/HEAD/front/coverage/lcov-report/base.css -------------------------------------------------------------------------------- /front/coverage/lcov-report/components/backToTop/BackToTop.tsx.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacKentoch/react-bootstrap-webpack-starter/HEAD/front/coverage/lcov-report/components/backToTop/BackToTop.tsx.html -------------------------------------------------------------------------------- /front/coverage/lcov-report/components/backToTop/backToTopButton/BackToTopButton.tsx.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacKentoch/react-bootstrap-webpack-starter/HEAD/front/coverage/lcov-report/components/backToTop/backToTopButton/BackToTopButton.tsx.html -------------------------------------------------------------------------------- /front/coverage/lcov-report/components/backToTop/backToTopButton/UpIcon.tsx.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacKentoch/react-bootstrap-webpack-starter/HEAD/front/coverage/lcov-report/components/backToTop/backToTopButton/UpIcon.tsx.html -------------------------------------------------------------------------------- /front/coverage/lcov-report/components/backToTop/backToTopButton/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacKentoch/react-bootstrap-webpack-starter/HEAD/front/coverage/lcov-report/components/backToTop/backToTopButton/index.html -------------------------------------------------------------------------------- /front/coverage/lcov-report/components/backToTop/backToTopButton/styled/WithRightMargin.tsx.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacKentoch/react-bootstrap-webpack-starter/HEAD/front/coverage/lcov-report/components/backToTop/backToTopButton/styled/WithRightMargin.tsx.html -------------------------------------------------------------------------------- /front/coverage/lcov-report/components/backToTop/backToTopButton/styled/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacKentoch/react-bootstrap-webpack-starter/HEAD/front/coverage/lcov-report/components/backToTop/backToTopButton/styled/index.html -------------------------------------------------------------------------------- /front/coverage/lcov-report/components/backToTop/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacKentoch/react-bootstrap-webpack-starter/HEAD/front/coverage/lcov-report/components/backToTop/index.html -------------------------------------------------------------------------------- /front/coverage/lcov-report/components/loadingContent/LoadingContent.tsx.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacKentoch/react-bootstrap-webpack-starter/HEAD/front/coverage/lcov-report/components/loadingContent/LoadingContent.tsx.html -------------------------------------------------------------------------------- /front/coverage/lcov-report/components/loadingContent/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacKentoch/react-bootstrap-webpack-starter/HEAD/front/coverage/lcov-report/components/loadingContent/index.html -------------------------------------------------------------------------------- /front/coverage/lcov-report/components/mainLayout/MainLayout.tsx.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacKentoch/react-bootstrap-webpack-starter/HEAD/front/coverage/lcov-report/components/mainLayout/MainLayout.tsx.html -------------------------------------------------------------------------------- /front/coverage/lcov-report/components/mainLayout/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacKentoch/react-bootstrap-webpack-starter/HEAD/front/coverage/lcov-report/components/mainLayout/index.html -------------------------------------------------------------------------------- /front/coverage/lcov-report/components/navigation/NavigationBar.tsx.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacKentoch/react-bootstrap-webpack-starter/HEAD/front/coverage/lcov-report/components/navigation/NavigationBar.tsx.html -------------------------------------------------------------------------------- /front/coverage/lcov-report/components/navigation/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacKentoch/react-bootstrap-webpack-starter/HEAD/front/coverage/lcov-report/components/navigation/index.html -------------------------------------------------------------------------------- /front/coverage/lcov-report/components/navigation/index.ts.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacKentoch/react-bootstrap-webpack-starter/HEAD/front/coverage/lcov-report/components/navigation/index.ts.html -------------------------------------------------------------------------------- /front/coverage/lcov-report/components/scrollToTop/ScrollToTop.tsx.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacKentoch/react-bootstrap-webpack-starter/HEAD/front/coverage/lcov-report/components/scrollToTop/ScrollToTop.tsx.html -------------------------------------------------------------------------------- /front/coverage/lcov-report/components/scrollToTop/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacKentoch/react-bootstrap-webpack-starter/HEAD/front/coverage/lcov-report/components/scrollToTop/index.html -------------------------------------------------------------------------------- /front/coverage/lcov-report/config/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacKentoch/react-bootstrap-webpack-starter/HEAD/front/coverage/lcov-report/config/index.html -------------------------------------------------------------------------------- /front/coverage/lcov-report/config/navigation.ts.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacKentoch/react-bootstrap-webpack-starter/HEAD/front/coverage/lcov-report/config/navigation.ts.html -------------------------------------------------------------------------------- /front/coverage/lcov-report/contexts/auth/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacKentoch/react-bootstrap-webpack-starter/HEAD/front/coverage/lcov-report/contexts/auth/index.html -------------------------------------------------------------------------------- /front/coverage/lcov-report/contexts/auth/index.tsx.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacKentoch/react-bootstrap-webpack-starter/HEAD/front/coverage/lcov-report/contexts/auth/index.tsx.html -------------------------------------------------------------------------------- /front/coverage/lcov-report/contexts/withDevTools/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacKentoch/react-bootstrap-webpack-starter/HEAD/front/coverage/lcov-report/contexts/withDevTools/index.html -------------------------------------------------------------------------------- /front/coverage/lcov-report/contexts/withDevTools/index.ts.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacKentoch/react-bootstrap-webpack-starter/HEAD/front/coverage/lcov-report/contexts/withDevTools/index.ts.html -------------------------------------------------------------------------------- /front/coverage/lcov-report/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacKentoch/react-bootstrap-webpack-starter/HEAD/front/coverage/lcov-report/index.html -------------------------------------------------------------------------------- /front/coverage/lcov-report/prettify.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacKentoch/react-bootstrap-webpack-starter/HEAD/front/coverage/lcov-report/prettify.css -------------------------------------------------------------------------------- /front/coverage/lcov-report/prettify.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacKentoch/react-bootstrap-webpack-starter/HEAD/front/coverage/lcov-report/prettify.js -------------------------------------------------------------------------------- /front/coverage/lcov-report/services/auth/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacKentoch/react-bootstrap-webpack-starter/HEAD/front/coverage/lcov-report/services/auth/index.html -------------------------------------------------------------------------------- /front/coverage/lcov-report/services/auth/index.ts.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacKentoch/react-bootstrap-webpack-starter/HEAD/front/coverage/lcov-report/services/auth/index.ts.html -------------------------------------------------------------------------------- /front/coverage/lcov-report/sort-arrow-sprite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacKentoch/react-bootstrap-webpack-starter/HEAD/front/coverage/lcov-report/sort-arrow-sprite.png -------------------------------------------------------------------------------- /front/coverage/lcov-report/sorter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacKentoch/react-bootstrap-webpack-starter/HEAD/front/coverage/lcov-report/sorter.js -------------------------------------------------------------------------------- /front/coverage/lcov-report/src/components/backToTop/BackToTop.tsx.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacKentoch/react-bootstrap-webpack-starter/HEAD/front/coverage/lcov-report/src/components/backToTop/BackToTop.tsx.html -------------------------------------------------------------------------------- /front/coverage/lcov-report/src/components/backToTop/backToTopButton/BackToTopButton.tsx.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacKentoch/react-bootstrap-webpack-starter/HEAD/front/coverage/lcov-report/src/components/backToTop/backToTopButton/BackToTopButton.tsx.html -------------------------------------------------------------------------------- /front/coverage/lcov-report/src/components/backToTop/backToTopButton/UpIcon.tsx.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacKentoch/react-bootstrap-webpack-starter/HEAD/front/coverage/lcov-report/src/components/backToTop/backToTopButton/UpIcon.tsx.html -------------------------------------------------------------------------------- /front/coverage/lcov-report/src/components/backToTop/backToTopButton/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacKentoch/react-bootstrap-webpack-starter/HEAD/front/coverage/lcov-report/src/components/backToTop/backToTopButton/index.html -------------------------------------------------------------------------------- /front/coverage/lcov-report/src/components/backToTop/backToTopButton/styled/WithRightMargin.tsx.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacKentoch/react-bootstrap-webpack-starter/HEAD/front/coverage/lcov-report/src/components/backToTop/backToTopButton/styled/WithRightMargin.tsx.html -------------------------------------------------------------------------------- /front/coverage/lcov-report/src/components/backToTop/backToTopButton/styled/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacKentoch/react-bootstrap-webpack-starter/HEAD/front/coverage/lcov-report/src/components/backToTop/backToTopButton/styled/index.html -------------------------------------------------------------------------------- /front/coverage/lcov-report/src/components/backToTop/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacKentoch/react-bootstrap-webpack-starter/HEAD/front/coverage/lcov-report/src/components/backToTop/index.html -------------------------------------------------------------------------------- /front/coverage/lcov-report/src/components/fadeInEntrance/FadeInEntrance.tsx.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacKentoch/react-bootstrap-webpack-starter/HEAD/front/coverage/lcov-report/src/components/fadeInEntrance/FadeInEntrance.tsx.html -------------------------------------------------------------------------------- /front/coverage/lcov-report/src/components/fadeInEntrance/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacKentoch/react-bootstrap-webpack-starter/HEAD/front/coverage/lcov-report/src/components/fadeInEntrance/index.html -------------------------------------------------------------------------------- /front/coverage/lcov-report/src/components/fadeInEntrance/index.ts.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacKentoch/react-bootstrap-webpack-starter/HEAD/front/coverage/lcov-report/src/components/fadeInEntrance/index.ts.html -------------------------------------------------------------------------------- /front/coverage/lcov-report/src/components/fadeInEntrance/styled/FadeInDiv.tsx.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacKentoch/react-bootstrap-webpack-starter/HEAD/front/coverage/lcov-report/src/components/fadeInEntrance/styled/FadeInDiv.tsx.html -------------------------------------------------------------------------------- /front/coverage/lcov-report/src/components/fadeInEntrance/styled/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacKentoch/react-bootstrap-webpack-starter/HEAD/front/coverage/lcov-report/src/components/fadeInEntrance/styled/index.html -------------------------------------------------------------------------------- /front/coverage/lcov-report/src/components/loadingContent/LoadingContent.tsx.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacKentoch/react-bootstrap-webpack-starter/HEAD/front/coverage/lcov-report/src/components/loadingContent/LoadingContent.tsx.html -------------------------------------------------------------------------------- /front/coverage/lcov-report/src/components/loadingContent/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacKentoch/react-bootstrap-webpack-starter/HEAD/front/coverage/lcov-report/src/components/loadingContent/index.html -------------------------------------------------------------------------------- /front/coverage/lcov-report/src/components/logoutRoute/LogoutRoute.tsx.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacKentoch/react-bootstrap-webpack-starter/HEAD/front/coverage/lcov-report/src/components/logoutRoute/LogoutRoute.tsx.html -------------------------------------------------------------------------------- /front/coverage/lcov-report/src/components/logoutRoute/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacKentoch/react-bootstrap-webpack-starter/HEAD/front/coverage/lcov-report/src/components/logoutRoute/index.html -------------------------------------------------------------------------------- /front/coverage/lcov-report/src/components/logoutRoute/index.ts.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacKentoch/react-bootstrap-webpack-starter/HEAD/front/coverage/lcov-report/src/components/logoutRoute/index.ts.html -------------------------------------------------------------------------------- /front/coverage/lcov-report/src/components/mainLayout/MainLayout.tsx.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacKentoch/react-bootstrap-webpack-starter/HEAD/front/coverage/lcov-report/src/components/mainLayout/MainLayout.tsx.html -------------------------------------------------------------------------------- /front/coverage/lcov-report/src/components/mainLayout/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacKentoch/react-bootstrap-webpack-starter/HEAD/front/coverage/lcov-report/src/components/mainLayout/index.html -------------------------------------------------------------------------------- /front/coverage/lcov-report/src/components/navigation/NavigationBar.tsx.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacKentoch/react-bootstrap-webpack-starter/HEAD/front/coverage/lcov-report/src/components/navigation/NavigationBar.tsx.html -------------------------------------------------------------------------------- /front/coverage/lcov-report/src/components/navigation/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacKentoch/react-bootstrap-webpack-starter/HEAD/front/coverage/lcov-report/src/components/navigation/index.html -------------------------------------------------------------------------------- /front/coverage/lcov-report/src/components/navigation/index.ts.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacKentoch/react-bootstrap-webpack-starter/HEAD/front/coverage/lcov-report/src/components/navigation/index.ts.html -------------------------------------------------------------------------------- /front/coverage/lcov-report/src/components/privateRoute/PrivateRoute.tsx.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacKentoch/react-bootstrap-webpack-starter/HEAD/front/coverage/lcov-report/src/components/privateRoute/PrivateRoute.tsx.html -------------------------------------------------------------------------------- /front/coverage/lcov-report/src/components/privateRoute/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacKentoch/react-bootstrap-webpack-starter/HEAD/front/coverage/lcov-report/src/components/privateRoute/index.html -------------------------------------------------------------------------------- /front/coverage/lcov-report/src/components/scrollToTop/ScrollToTop.tsx.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacKentoch/react-bootstrap-webpack-starter/HEAD/front/coverage/lcov-report/src/components/scrollToTop/ScrollToTop.tsx.html -------------------------------------------------------------------------------- /front/coverage/lcov-report/src/components/scrollToTop/hooks/useScrollToTopOnLocationChange/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacKentoch/react-bootstrap-webpack-starter/HEAD/front/coverage/lcov-report/src/components/scrollToTop/hooks/useScrollToTopOnLocationChange/index.html -------------------------------------------------------------------------------- /front/coverage/lcov-report/src/components/scrollToTop/hooks/useScrollToTopOnLocationChange/index.ts.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacKentoch/react-bootstrap-webpack-starter/HEAD/front/coverage/lcov-report/src/components/scrollToTop/hooks/useScrollToTopOnLocationChange/index.ts.html -------------------------------------------------------------------------------- /front/coverage/lcov-report/src/components/scrollToTop/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacKentoch/react-bootstrap-webpack-starter/HEAD/front/coverage/lcov-report/src/components/scrollToTop/index.html -------------------------------------------------------------------------------- /front/coverage/lcov-report/src/config/appConfig.ts.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacKentoch/react-bootstrap-webpack-starter/HEAD/front/coverage/lcov-report/src/config/appConfig.ts.html -------------------------------------------------------------------------------- /front/coverage/lcov-report/src/config/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacKentoch/react-bootstrap-webpack-starter/HEAD/front/coverage/lcov-report/src/config/index.html -------------------------------------------------------------------------------- /front/coverage/lcov-report/src/config/navigation.ts.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacKentoch/react-bootstrap-webpack-starter/HEAD/front/coverage/lcov-report/src/config/navigation.ts.html -------------------------------------------------------------------------------- /front/coverage/lcov-report/src/contexts/auth/hook/authContextHook.ts.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacKentoch/react-bootstrap-webpack-starter/HEAD/front/coverage/lcov-report/src/contexts/auth/hook/authContextHook.ts.html -------------------------------------------------------------------------------- /front/coverage/lcov-report/src/contexts/auth/hook/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacKentoch/react-bootstrap-webpack-starter/HEAD/front/coverage/lcov-report/src/contexts/auth/hook/index.html -------------------------------------------------------------------------------- /front/coverage/lcov-report/src/contexts/auth/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacKentoch/react-bootstrap-webpack-starter/HEAD/front/coverage/lcov-report/src/contexts/auth/index.html -------------------------------------------------------------------------------- /front/coverage/lcov-report/src/contexts/auth/index.tsx.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacKentoch/react-bootstrap-webpack-starter/HEAD/front/coverage/lcov-report/src/contexts/auth/index.tsx.html -------------------------------------------------------------------------------- /front/coverage/lcov-report/src/contexts/withDevTools/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacKentoch/react-bootstrap-webpack-starter/HEAD/front/coverage/lcov-report/src/contexts/withDevTools/index.html -------------------------------------------------------------------------------- /front/coverage/lcov-report/src/contexts/withDevTools/index.ts.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacKentoch/react-bootstrap-webpack-starter/HEAD/front/coverage/lcov-report/src/contexts/withDevTools/index.ts.html -------------------------------------------------------------------------------- /front/coverage/lcov-report/src/mock/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacKentoch/react-bootstrap-webpack-starter/HEAD/front/coverage/lcov-report/src/mock/index.html -------------------------------------------------------------------------------- /front/coverage/lcov-report/src/mock/userInfo.ts.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacKentoch/react-bootstrap-webpack-starter/HEAD/front/coverage/lcov-report/src/mock/userInfo.ts.html -------------------------------------------------------------------------------- /front/coverage/lcov-report/src/pages/about/About.tsx.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacKentoch/react-bootstrap-webpack-starter/HEAD/front/coverage/lcov-report/src/pages/about/About.tsx.html -------------------------------------------------------------------------------- /front/coverage/lcov-report/src/pages/about/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacKentoch/react-bootstrap-webpack-starter/HEAD/front/coverage/lcov-report/src/pages/about/index.html -------------------------------------------------------------------------------- /front/coverage/lcov-report/src/pages/home/Home.tsx.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacKentoch/react-bootstrap-webpack-starter/HEAD/front/coverage/lcov-report/src/pages/home/Home.tsx.html -------------------------------------------------------------------------------- /front/coverage/lcov-report/src/pages/home/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacKentoch/react-bootstrap-webpack-starter/HEAD/front/coverage/lcov-report/src/pages/home/index.html -------------------------------------------------------------------------------- /front/coverage/lcov-report/src/pages/home/styled/HomeInfo.tsx.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacKentoch/react-bootstrap-webpack-starter/HEAD/front/coverage/lcov-report/src/pages/home/styled/HomeInfo.tsx.html -------------------------------------------------------------------------------- /front/coverage/lcov-report/src/pages/home/styled/LightNote.tsx.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacKentoch/react-bootstrap-webpack-starter/HEAD/front/coverage/lcov-report/src/pages/home/styled/LightNote.tsx.html -------------------------------------------------------------------------------- /front/coverage/lcov-report/src/pages/home/styled/MainTitle.tsx.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacKentoch/react-bootstrap-webpack-starter/HEAD/front/coverage/lcov-report/src/pages/home/styled/MainTitle.tsx.html -------------------------------------------------------------------------------- /front/coverage/lcov-report/src/pages/home/styled/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacKentoch/react-bootstrap-webpack-starter/HEAD/front/coverage/lcov-report/src/pages/home/styled/index.html -------------------------------------------------------------------------------- /front/coverage/lcov-report/src/pages/login/Login.tsx.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacKentoch/react-bootstrap-webpack-starter/HEAD/front/coverage/lcov-report/src/pages/login/Login.tsx.html -------------------------------------------------------------------------------- /front/coverage/lcov-report/src/pages/login/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacKentoch/react-bootstrap-webpack-starter/HEAD/front/coverage/lcov-report/src/pages/login/index.html -------------------------------------------------------------------------------- /front/coverage/lcov-report/src/pages/pageNotFound/PageNotFound.tsx.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacKentoch/react-bootstrap-webpack-starter/HEAD/front/coverage/lcov-report/src/pages/pageNotFound/PageNotFound.tsx.html -------------------------------------------------------------------------------- /front/coverage/lcov-report/src/pages/pageNotFound/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacKentoch/react-bootstrap-webpack-starter/HEAD/front/coverage/lcov-report/src/pages/pageNotFound/index.html -------------------------------------------------------------------------------- /front/coverage/lcov-report/src/pages/protected/Protected.tsx.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacKentoch/react-bootstrap-webpack-starter/HEAD/front/coverage/lcov-report/src/pages/protected/Protected.tsx.html -------------------------------------------------------------------------------- /front/coverage/lcov-report/src/pages/protected/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacKentoch/react-bootstrap-webpack-starter/HEAD/front/coverage/lcov-report/src/pages/protected/index.html -------------------------------------------------------------------------------- /front/coverage/lcov-report/src/services/API/fetchTools.ts.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacKentoch/react-bootstrap-webpack-starter/HEAD/front/coverage/lcov-report/src/services/API/fetchTools.ts.html -------------------------------------------------------------------------------- /front/coverage/lcov-report/src/services/API/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacKentoch/react-bootstrap-webpack-starter/HEAD/front/coverage/lcov-report/src/services/API/index.html -------------------------------------------------------------------------------- /front/coverage/lcov-report/src/services/auth/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacKentoch/react-bootstrap-webpack-starter/HEAD/front/coverage/lcov-report/src/services/auth/index.html -------------------------------------------------------------------------------- /front/coverage/lcov-report/src/services/auth/index.ts.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacKentoch/react-bootstrap-webpack-starter/HEAD/front/coverage/lcov-report/src/services/auth/index.ts.html -------------------------------------------------------------------------------- /front/coverage/lcov-report/test/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacKentoch/react-bootstrap-webpack-starter/HEAD/front/coverage/lcov-report/test/index.html -------------------------------------------------------------------------------- /front/coverage/lcov-report/test/setupTests.ts.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacKentoch/react-bootstrap-webpack-starter/HEAD/front/coverage/lcov-report/test/setupTests.ts.html -------------------------------------------------------------------------------- /front/coverage/lcov.info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacKentoch/react-bootstrap-webpack-starter/HEAD/front/coverage/lcov.info -------------------------------------------------------------------------------- /front/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacKentoch/react-bootstrap-webpack-starter/HEAD/front/index.html -------------------------------------------------------------------------------- /front/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacKentoch/react-bootstrap-webpack-starter/HEAD/front/jest.config.js -------------------------------------------------------------------------------- /front/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacKentoch/react-bootstrap-webpack-starter/HEAD/front/package.json -------------------------------------------------------------------------------- /front/src/Root.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacKentoch/react-bootstrap-webpack-starter/HEAD/front/src/Root.tsx -------------------------------------------------------------------------------- /front/src/components/backToTop/BackToTop.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacKentoch/react-bootstrap-webpack-starter/HEAD/front/src/components/backToTop/BackToTop.tsx -------------------------------------------------------------------------------- /front/src/components/backToTop/__tests__/BackToTop.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacKentoch/react-bootstrap-webpack-starter/HEAD/front/src/components/backToTop/__tests__/BackToTop.test.tsx -------------------------------------------------------------------------------- /front/src/components/backToTop/__tests__/__snapshots__/BackToTop.test.tsx.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacKentoch/react-bootstrap-webpack-starter/HEAD/front/src/components/backToTop/__tests__/__snapshots__/BackToTop.test.tsx.snap -------------------------------------------------------------------------------- /front/src/components/backToTop/backToTopButton/BackToTopButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacKentoch/react-bootstrap-webpack-starter/HEAD/front/src/components/backToTop/backToTopButton/BackToTopButton.tsx -------------------------------------------------------------------------------- /front/src/components/backToTop/backToTopButton/UpIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacKentoch/react-bootstrap-webpack-starter/HEAD/front/src/components/backToTop/backToTopButton/UpIcon.tsx -------------------------------------------------------------------------------- /front/src/components/backToTop/backToTopButton/__tests__/UpIcon.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacKentoch/react-bootstrap-webpack-starter/HEAD/front/src/components/backToTop/backToTopButton/__tests__/UpIcon.test.tsx -------------------------------------------------------------------------------- /front/src/components/backToTop/backToTopButton/__tests__/__snapshots__/UpIcon.test.tsx.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacKentoch/react-bootstrap-webpack-starter/HEAD/front/src/components/backToTop/backToTopButton/__tests__/__snapshots__/UpIcon.test.tsx.snap -------------------------------------------------------------------------------- /front/src/components/backToTop/backToTopButton/__tests__/__snapshots__/backToTopButton.test.tsx.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacKentoch/react-bootstrap-webpack-starter/HEAD/front/src/components/backToTop/backToTopButton/__tests__/__snapshots__/backToTopButton.test.tsx.snap -------------------------------------------------------------------------------- /front/src/components/backToTop/backToTopButton/__tests__/backToTopButton.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacKentoch/react-bootstrap-webpack-starter/HEAD/front/src/components/backToTop/backToTopButton/__tests__/backToTopButton.test.tsx -------------------------------------------------------------------------------- /front/src/components/backToTop/backToTopButton/styled/WithRightMargin.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacKentoch/react-bootstrap-webpack-starter/HEAD/front/src/components/backToTop/backToTopButton/styled/WithRightMargin.tsx -------------------------------------------------------------------------------- /front/src/components/fadeInEntrance/FadeInEntrance.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacKentoch/react-bootstrap-webpack-starter/HEAD/front/src/components/fadeInEntrance/FadeInEntrance.tsx -------------------------------------------------------------------------------- /front/src/components/fadeInEntrance/__tests__/FadeInEntreance.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacKentoch/react-bootstrap-webpack-starter/HEAD/front/src/components/fadeInEntrance/__tests__/FadeInEntreance.spec.tsx -------------------------------------------------------------------------------- /front/src/components/fadeInEntrance/__tests__/__snapshots__/FadeInEntreance.spec.tsx.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacKentoch/react-bootstrap-webpack-starter/HEAD/front/src/components/fadeInEntrance/__tests__/__snapshots__/FadeInEntreance.spec.tsx.snap -------------------------------------------------------------------------------- /front/src/components/fadeInEntrance/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacKentoch/react-bootstrap-webpack-starter/HEAD/front/src/components/fadeInEntrance/index.ts -------------------------------------------------------------------------------- /front/src/components/fadeInEntrance/styled/FadeInDiv.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacKentoch/react-bootstrap-webpack-starter/HEAD/front/src/components/fadeInEntrance/styled/FadeInDiv.tsx -------------------------------------------------------------------------------- /front/src/components/loadingContent/LoadingContent.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacKentoch/react-bootstrap-webpack-starter/HEAD/front/src/components/loadingContent/LoadingContent.tsx -------------------------------------------------------------------------------- /front/src/components/loadingContent/__tests__/LoadingContent.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacKentoch/react-bootstrap-webpack-starter/HEAD/front/src/components/loadingContent/__tests__/LoadingContent.test.tsx -------------------------------------------------------------------------------- /front/src/components/loadingContent/__tests__/__snapshots__/LoadingContent.test.tsx.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacKentoch/react-bootstrap-webpack-starter/HEAD/front/src/components/loadingContent/__tests__/__snapshots__/LoadingContent.test.tsx.snap -------------------------------------------------------------------------------- /front/src/components/loadingContent/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacKentoch/react-bootstrap-webpack-starter/HEAD/front/src/components/loadingContent/index.ts -------------------------------------------------------------------------------- /front/src/components/logoutRoute/LogoutRoute.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacKentoch/react-bootstrap-webpack-starter/HEAD/front/src/components/logoutRoute/LogoutRoute.tsx -------------------------------------------------------------------------------- /front/src/components/logoutRoute/__tests__/LogoutRoute.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacKentoch/react-bootstrap-webpack-starter/HEAD/front/src/components/logoutRoute/__tests__/LogoutRoute.test.tsx -------------------------------------------------------------------------------- /front/src/components/logoutRoute/__tests__/__snapshots__/LogoutRoute.test.tsx.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacKentoch/react-bootstrap-webpack-starter/HEAD/front/src/components/logoutRoute/__tests__/__snapshots__/LogoutRoute.test.tsx.snap -------------------------------------------------------------------------------- /front/src/components/logoutRoute/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacKentoch/react-bootstrap-webpack-starter/HEAD/front/src/components/logoutRoute/index.ts -------------------------------------------------------------------------------- /front/src/components/mainLayout/MainLayout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacKentoch/react-bootstrap-webpack-starter/HEAD/front/src/components/mainLayout/MainLayout.tsx -------------------------------------------------------------------------------- /front/src/components/mainLayout/__tests__/MainLayout.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacKentoch/react-bootstrap-webpack-starter/HEAD/front/src/components/mainLayout/__tests__/MainLayout.test.tsx -------------------------------------------------------------------------------- /front/src/components/mainLayout/__tests__/__snapshots__/MainLayout.test.tsx.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacKentoch/react-bootstrap-webpack-starter/HEAD/front/src/components/mainLayout/__tests__/__snapshots__/MainLayout.test.tsx.snap -------------------------------------------------------------------------------- /front/src/components/mainLayout/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacKentoch/react-bootstrap-webpack-starter/HEAD/front/src/components/mainLayout/index.ts -------------------------------------------------------------------------------- /front/src/components/navigation/NavigationBar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacKentoch/react-bootstrap-webpack-starter/HEAD/front/src/components/navigation/NavigationBar.tsx -------------------------------------------------------------------------------- /front/src/components/navigation/__tests__/NavigationBar.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacKentoch/react-bootstrap-webpack-starter/HEAD/front/src/components/navigation/__tests__/NavigationBar.test.tsx -------------------------------------------------------------------------------- /front/src/components/navigation/__tests__/__snapshots__/NavigationBar.test.tsx.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacKentoch/react-bootstrap-webpack-starter/HEAD/front/src/components/navigation/__tests__/__snapshots__/NavigationBar.test.tsx.snap -------------------------------------------------------------------------------- /front/src/components/navigation/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacKentoch/react-bootstrap-webpack-starter/HEAD/front/src/components/navigation/index.ts -------------------------------------------------------------------------------- /front/src/components/privateRoute/PrivateRoute.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacKentoch/react-bootstrap-webpack-starter/HEAD/front/src/components/privateRoute/PrivateRoute.tsx -------------------------------------------------------------------------------- /front/src/components/privateRoute/__tests__/PrivateRoute.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacKentoch/react-bootstrap-webpack-starter/HEAD/front/src/components/privateRoute/__tests__/PrivateRoute.test.tsx -------------------------------------------------------------------------------- /front/src/components/privateRoute/__tests__/__snapshots__/PrivateRoute.test.tsx.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacKentoch/react-bootstrap-webpack-starter/HEAD/front/src/components/privateRoute/__tests__/__snapshots__/PrivateRoute.test.tsx.snap -------------------------------------------------------------------------------- /front/src/components/privateRoute/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacKentoch/react-bootstrap-webpack-starter/HEAD/front/src/components/privateRoute/index.ts -------------------------------------------------------------------------------- /front/src/components/scrollToTop/ScrollToTop.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacKentoch/react-bootstrap-webpack-starter/HEAD/front/src/components/scrollToTop/ScrollToTop.tsx -------------------------------------------------------------------------------- /front/src/components/scrollToTop/___tests___/ScrolToTop.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacKentoch/react-bootstrap-webpack-starter/HEAD/front/src/components/scrollToTop/___tests___/ScrolToTop.test.tsx -------------------------------------------------------------------------------- /front/src/components/scrollToTop/___tests___/__snapshots__/ScrolToTop.test.tsx.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacKentoch/react-bootstrap-webpack-starter/HEAD/front/src/components/scrollToTop/___tests___/__snapshots__/ScrolToTop.test.tsx.snap -------------------------------------------------------------------------------- /front/src/components/scrollToTop/hooks/useScrollToTopOnLocationChange/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacKentoch/react-bootstrap-webpack-starter/HEAD/front/src/components/scrollToTop/hooks/useScrollToTopOnLocationChange/index.ts -------------------------------------------------------------------------------- /front/src/components/scrollToTop/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacKentoch/react-bootstrap-webpack-starter/HEAD/front/src/components/scrollToTop/index.ts -------------------------------------------------------------------------------- /front/src/components/withSuspense/WithSuspense.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacKentoch/react-bootstrap-webpack-starter/HEAD/front/src/components/withSuspense/WithSuspense.tsx -------------------------------------------------------------------------------- /front/src/components/withSuspense/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacKentoch/react-bootstrap-webpack-starter/HEAD/front/src/components/withSuspense/index.ts -------------------------------------------------------------------------------- /front/src/config/appConfig.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacKentoch/react-bootstrap-webpack-starter/HEAD/front/src/config/appConfig.ts -------------------------------------------------------------------------------- /front/src/config/navigation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacKentoch/react-bootstrap-webpack-starter/HEAD/front/src/config/navigation.ts -------------------------------------------------------------------------------- /front/src/contexts/auth/hook/__tests__/authContextHook.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacKentoch/react-bootstrap-webpack-starter/HEAD/front/src/contexts/auth/hook/__tests__/authContextHook.spec.ts -------------------------------------------------------------------------------- /front/src/contexts/auth/hook/authContextHook.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacKentoch/react-bootstrap-webpack-starter/HEAD/front/src/contexts/auth/hook/authContextHook.ts -------------------------------------------------------------------------------- /front/src/contexts/auth/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacKentoch/react-bootstrap-webpack-starter/HEAD/front/src/contexts/auth/index.tsx -------------------------------------------------------------------------------- /front/src/contexts/withDevTools/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacKentoch/react-bootstrap-webpack-starter/HEAD/front/src/contexts/withDevTools/index.ts -------------------------------------------------------------------------------- /front/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacKentoch/react-bootstrap-webpack-starter/HEAD/front/src/index.html -------------------------------------------------------------------------------- /front/src/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacKentoch/react-bootstrap-webpack-starter/HEAD/front/src/index.tsx -------------------------------------------------------------------------------- /front/src/mock/userInfo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacKentoch/react-bootstrap-webpack-starter/HEAD/front/src/mock/userInfo.ts -------------------------------------------------------------------------------- /front/src/pages/about/About.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacKentoch/react-bootstrap-webpack-starter/HEAD/front/src/pages/about/About.tsx -------------------------------------------------------------------------------- /front/src/pages/about/__tests__/About.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacKentoch/react-bootstrap-webpack-starter/HEAD/front/src/pages/about/__tests__/About.test.tsx -------------------------------------------------------------------------------- /front/src/pages/about/__tests__/__snapshots__/About.test.tsx.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacKentoch/react-bootstrap-webpack-starter/HEAD/front/src/pages/about/__tests__/__snapshots__/About.test.tsx.snap -------------------------------------------------------------------------------- /front/src/pages/about/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacKentoch/react-bootstrap-webpack-starter/HEAD/front/src/pages/about/index.ts -------------------------------------------------------------------------------- /front/src/pages/home/Home.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacKentoch/react-bootstrap-webpack-starter/HEAD/front/src/pages/home/Home.tsx -------------------------------------------------------------------------------- /front/src/pages/home/__tests__/Home.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacKentoch/react-bootstrap-webpack-starter/HEAD/front/src/pages/home/__tests__/Home.test.tsx -------------------------------------------------------------------------------- /front/src/pages/home/__tests__/__snapshots__/Home.test.tsx.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacKentoch/react-bootstrap-webpack-starter/HEAD/front/src/pages/home/__tests__/__snapshots__/Home.test.tsx.snap -------------------------------------------------------------------------------- /front/src/pages/home/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacKentoch/react-bootstrap-webpack-starter/HEAD/front/src/pages/home/index.ts -------------------------------------------------------------------------------- /front/src/pages/home/styled/HomeInfo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacKentoch/react-bootstrap-webpack-starter/HEAD/front/src/pages/home/styled/HomeInfo.tsx -------------------------------------------------------------------------------- /front/src/pages/home/styled/LightNote.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacKentoch/react-bootstrap-webpack-starter/HEAD/front/src/pages/home/styled/LightNote.tsx -------------------------------------------------------------------------------- /front/src/pages/home/styled/MainTitle.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacKentoch/react-bootstrap-webpack-starter/HEAD/front/src/pages/home/styled/MainTitle.tsx -------------------------------------------------------------------------------- /front/src/pages/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacKentoch/react-bootstrap-webpack-starter/HEAD/front/src/pages/index.ts -------------------------------------------------------------------------------- /front/src/pages/login/Login.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacKentoch/react-bootstrap-webpack-starter/HEAD/front/src/pages/login/Login.tsx -------------------------------------------------------------------------------- /front/src/pages/login/__tests__/Login.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacKentoch/react-bootstrap-webpack-starter/HEAD/front/src/pages/login/__tests__/Login.test.tsx -------------------------------------------------------------------------------- /front/src/pages/login/__tests__/__snapshots__/Login.test.tsx.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacKentoch/react-bootstrap-webpack-starter/HEAD/front/src/pages/login/__tests__/__snapshots__/Login.test.tsx.snap -------------------------------------------------------------------------------- /front/src/pages/login/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacKentoch/react-bootstrap-webpack-starter/HEAD/front/src/pages/login/index.ts -------------------------------------------------------------------------------- /front/src/pages/pageNotFound/PageNotFound.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacKentoch/react-bootstrap-webpack-starter/HEAD/front/src/pages/pageNotFound/PageNotFound.tsx -------------------------------------------------------------------------------- /front/src/pages/pageNotFound/__tests__/PageNotFound.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacKentoch/react-bootstrap-webpack-starter/HEAD/front/src/pages/pageNotFound/__tests__/PageNotFound.test.tsx -------------------------------------------------------------------------------- /front/src/pages/pageNotFound/__tests__/__snapshots__/PageNotFound.test.tsx.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacKentoch/react-bootstrap-webpack-starter/HEAD/front/src/pages/pageNotFound/__tests__/__snapshots__/PageNotFound.test.tsx.snap -------------------------------------------------------------------------------- /front/src/pages/pageNotFound/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacKentoch/react-bootstrap-webpack-starter/HEAD/front/src/pages/pageNotFound/index.ts -------------------------------------------------------------------------------- /front/src/pages/protected/Protected.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacKentoch/react-bootstrap-webpack-starter/HEAD/front/src/pages/protected/Protected.tsx -------------------------------------------------------------------------------- /front/src/pages/protected/__tests__/Protected.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacKentoch/react-bootstrap-webpack-starter/HEAD/front/src/pages/protected/__tests__/Protected.test.tsx -------------------------------------------------------------------------------- /front/src/pages/protected/__tests__/__snapshots__/Protected.test.tsx.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacKentoch/react-bootstrap-webpack-starter/HEAD/front/src/pages/protected/__tests__/__snapshots__/Protected.test.tsx.snap -------------------------------------------------------------------------------- /front/src/pages/protected/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacKentoch/react-bootstrap-webpack-starter/HEAD/front/src/pages/protected/index.ts -------------------------------------------------------------------------------- /front/src/routes/MainRoutes.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacKentoch/react-bootstrap-webpack-starter/HEAD/front/src/routes/MainRoutes.tsx -------------------------------------------------------------------------------- /front/src/routes/routes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacKentoch/react-bootstrap-webpack-starter/HEAD/front/src/routes/routes.ts -------------------------------------------------------------------------------- /front/src/services/API/example.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacKentoch/react-bootstrap-webpack-starter/HEAD/front/src/services/API/example.ts -------------------------------------------------------------------------------- /front/src/services/API/fetchTools.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacKentoch/react-bootstrap-webpack-starter/HEAD/front/src/services/API/fetchTools.ts -------------------------------------------------------------------------------- /front/src/services/auth/__tests__/auth.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacKentoch/react-bootstrap-webpack-starter/HEAD/front/src/services/auth/__tests__/auth.test.ts -------------------------------------------------------------------------------- /front/src/services/auth/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacKentoch/react-bootstrap-webpack-starter/HEAD/front/src/services/auth/index.ts -------------------------------------------------------------------------------- /front/src/services/getLocationOrigin/getLocationOrigin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacKentoch/react-bootstrap-webpack-starter/HEAD/front/src/services/getLocationOrigin/getLocationOrigin.ts -------------------------------------------------------------------------------- /front/src/services/sw/registerServiceWorker.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacKentoch/react-bootstrap-webpack-starter/HEAD/front/src/services/sw/registerServiceWorker.ts -------------------------------------------------------------------------------- /front/src/statics/index-raw.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacKentoch/react-bootstrap-webpack-starter/HEAD/front/src/statics/index-raw.html -------------------------------------------------------------------------------- /front/src/statics/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacKentoch/react-bootstrap-webpack-starter/HEAD/front/src/statics/index.html -------------------------------------------------------------------------------- /front/src/style/GlobalStyles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacKentoch/react-bootstrap-webpack-starter/HEAD/front/src/style/GlobalStyles.ts -------------------------------------------------------------------------------- /front/src/types/auth/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacKentoch/react-bootstrap-webpack-starter/HEAD/front/src/types/auth/index.d.ts -------------------------------------------------------------------------------- /front/src/types/user/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacKentoch/react-bootstrap-webpack-starter/HEAD/front/src/types/user/index.d.ts -------------------------------------------------------------------------------- /front/test/__mocks__/fileMock.ts: -------------------------------------------------------------------------------- 1 | export default 'test-file-stub'; -------------------------------------------------------------------------------- /front/test/mockedRouter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacKentoch/react-bootstrap-webpack-starter/HEAD/front/test/mockedRouter.ts -------------------------------------------------------------------------------- /front/test/setupTests.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacKentoch/react-bootstrap-webpack-starter/HEAD/front/test/setupTests.ts -------------------------------------------------------------------------------- /front/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacKentoch/react-bootstrap-webpack-starter/HEAD/front/tsconfig.json -------------------------------------------------------------------------------- /front/webpack.analyze.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacKentoch/react-bootstrap-webpack-starter/HEAD/front/webpack.analyze.config.js -------------------------------------------------------------------------------- /front/webpack.dev.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacKentoch/react-bootstrap-webpack-starter/HEAD/front/webpack.dev.config.js -------------------------------------------------------------------------------- /front/webpack.hot.reload.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacKentoch/react-bootstrap-webpack-starter/HEAD/front/webpack.hot.reload.config.js -------------------------------------------------------------------------------- /front/webpack.production.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacKentoch/react-bootstrap-webpack-starter/HEAD/front/webpack.production.config.js -------------------------------------------------------------------------------- /preview/preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacKentoch/react-bootstrap-webpack-starter/HEAD/preview/preview.png -------------------------------------------------------------------------------- /scripts/prepareIndexHtml.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacKentoch/react-bootstrap-webpack-starter/HEAD/scripts/prepareIndexHtml.js -------------------------------------------------------------------------------- /server/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacKentoch/react-bootstrap-webpack-starter/HEAD/server/.editorconfig -------------------------------------------------------------------------------- /server/.nvmrc: -------------------------------------------------------------------------------- 1 | 12 2 | -------------------------------------------------------------------------------- /server/.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacKentoch/react-bootstrap-webpack-starter/HEAD/server/.prettierrc -------------------------------------------------------------------------------- /server/.yarnclean: -------------------------------------------------------------------------------- 1 | @types/react-native 2 | -------------------------------------------------------------------------------- /server/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacKentoch/react-bootstrap-webpack-starter/HEAD/server/jest.config.js -------------------------------------------------------------------------------- /server/out/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacKentoch/react-bootstrap-webpack-starter/HEAD/server/out/index.js -------------------------------------------------------------------------------- /server/out/lib/expressServer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacKentoch/react-bootstrap-webpack-starter/HEAD/server/out/lib/expressServer.js -------------------------------------------------------------------------------- /server/out/middleware/errors.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacKentoch/react-bootstrap-webpack-starter/HEAD/server/out/middleware/errors.js -------------------------------------------------------------------------------- /server/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacKentoch/react-bootstrap-webpack-starter/HEAD/server/package.json -------------------------------------------------------------------------------- /server/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacKentoch/react-bootstrap-webpack-starter/HEAD/server/src/index.ts -------------------------------------------------------------------------------- /server/src/lib/asyncWrap.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacKentoch/react-bootstrap-webpack-starter/HEAD/server/src/lib/asyncWrap.ts -------------------------------------------------------------------------------- /server/src/lib/expressServer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacKentoch/react-bootstrap-webpack-starter/HEAD/server/src/lib/expressServer.ts -------------------------------------------------------------------------------- /server/src/middleware/errors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacKentoch/react-bootstrap-webpack-starter/HEAD/server/src/middleware/errors.ts -------------------------------------------------------------------------------- /server/test/setupTests.ts: -------------------------------------------------------------------------------- 1 | require('jest-localstorage-mock'); 2 | -------------------------------------------------------------------------------- /server/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacKentoch/react-bootstrap-webpack-starter/HEAD/server/tsconfig.json -------------------------------------------------------------------------------- /typings/globals/axios/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacKentoch/react-bootstrap-webpack-starter/HEAD/typings/globals/axios/index.d.ts -------------------------------------------------------------------------------- /typings/globals/axios/typings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacKentoch/react-bootstrap-webpack-starter/HEAD/typings/globals/axios/typings.json -------------------------------------------------------------------------------- /typings/globals/classnames/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacKentoch/react-bootstrap-webpack-starter/HEAD/typings/globals/classnames/index.d.ts -------------------------------------------------------------------------------- /typings/globals/classnames/typings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacKentoch/react-bootstrap-webpack-starter/HEAD/typings/globals/classnames/typings.json -------------------------------------------------------------------------------- /typings/globals/jest/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacKentoch/react-bootstrap-webpack-starter/HEAD/typings/globals/jest/index.d.ts -------------------------------------------------------------------------------- /typings/globals/jest/typings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacKentoch/react-bootstrap-webpack-starter/HEAD/typings/globals/jest/typings.json -------------------------------------------------------------------------------- /typings/globals/js-base64/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacKentoch/react-bootstrap-webpack-starter/HEAD/typings/globals/js-base64/index.d.ts -------------------------------------------------------------------------------- /typings/globals/js-base64/typings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacKentoch/react-bootstrap-webpack-starter/HEAD/typings/globals/js-base64/typings.json -------------------------------------------------------------------------------- /typings/globals/modernizr/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacKentoch/react-bootstrap-webpack-starter/HEAD/typings/globals/modernizr/index.d.ts -------------------------------------------------------------------------------- /typings/globals/modernizr/typings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacKentoch/react-bootstrap-webpack-starter/HEAD/typings/globals/modernizr/typings.json -------------------------------------------------------------------------------- /typings/globals/node/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacKentoch/react-bootstrap-webpack-starter/HEAD/typings/globals/node/index.d.ts -------------------------------------------------------------------------------- /typings/globals/node/typings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacKentoch/react-bootstrap-webpack-starter/HEAD/typings/globals/node/typings.json -------------------------------------------------------------------------------- /typings/globals/popper.js/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacKentoch/react-bootstrap-webpack-starter/HEAD/typings/globals/popper.js/index.d.ts -------------------------------------------------------------------------------- /typings/globals/popper.js/typings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacKentoch/react-bootstrap-webpack-starter/HEAD/typings/globals/popper.js/typings.json -------------------------------------------------------------------------------- /typings/globals/react-router-dom/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacKentoch/react-bootstrap-webpack-starter/HEAD/typings/globals/react-router-dom/index.d.ts -------------------------------------------------------------------------------- /typings/globals/react-router-dom/typings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacKentoch/react-bootstrap-webpack-starter/HEAD/typings/globals/react-router-dom/typings.json -------------------------------------------------------------------------------- /typings/globals/recompose/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacKentoch/react-bootstrap-webpack-starter/HEAD/typings/globals/recompose/index.d.ts -------------------------------------------------------------------------------- /typings/globals/recompose/typings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacKentoch/react-bootstrap-webpack-starter/HEAD/typings/globals/recompose/typings.json -------------------------------------------------------------------------------- /typings/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacKentoch/react-bootstrap-webpack-starter/HEAD/typings/index.d.ts -------------------------------------------------------------------------------- /typings/modules/enzyme/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacKentoch/react-bootstrap-webpack-starter/HEAD/typings/modules/enzyme/index.d.ts -------------------------------------------------------------------------------- /typings/modules/enzyme/typings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacKentoch/react-bootstrap-webpack-starter/HEAD/typings/modules/enzyme/typings.json -------------------------------------------------------------------------------- /typings/modules/react-bootstrap/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacKentoch/react-bootstrap-webpack-starter/HEAD/typings/modules/react-bootstrap/index.d.ts -------------------------------------------------------------------------------- /typings/modules/react-bootstrap/typings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacKentoch/react-bootstrap-webpack-starter/HEAD/typings/modules/react-bootstrap/typings.json -------------------------------------------------------------------------------- /typings/modules/react-motion/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacKentoch/react-bootstrap-webpack-starter/HEAD/typings/modules/react-motion/index.d.ts -------------------------------------------------------------------------------- /typings/modules/react-motion/typings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacKentoch/react-bootstrap-webpack-starter/HEAD/typings/modules/react-motion/typings.json -------------------------------------------------------------------------------- /typings/modules/react/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacKentoch/react-bootstrap-webpack-starter/HEAD/typings/modules/react/index.d.ts -------------------------------------------------------------------------------- /typings/modules/react/typings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacKentoch/react-bootstrap-webpack-starter/HEAD/typings/modules/react/typings.json --------------------------------------------------------------------------------