├── .babelrc ├── .codeclimate.yml ├── .editorconfig ├── .eslintrc ├── .flowconfig ├── .gitignore ├── .stylelintrc ├── .travis.yml ├── README.md ├── app ├── .htaccess ├── index.ejs ├── robots.txt ├── scripts │ ├── actions │ │ ├── app.js │ │ ├── github.js │ │ ├── index.js │ │ └── user.js │ ├── components │ │ ├── Alert.jsx │ │ ├── Footer.jsx │ │ ├── Header.jsx │ │ ├── Loader.jsx │ │ ├── Logo.jsx │ │ ├── SystemAlerts.jsx │ │ └── Transition.jsx │ ├── config.js │ ├── constants │ │ └── index.js │ ├── containers │ │ └── App.jsx │ ├── epics │ │ ├── github.js │ │ ├── index.js │ │ └── user.js │ ├── index.jsx │ ├── modules │ │ ├── RoutePrivate.jsx │ │ ├── RoutePublic.jsx │ │ ├── client.js │ │ ├── helpers.js │ │ └── history.js │ ├── reducers │ │ ├── app.js │ │ ├── github.js │ │ ├── index.js │ │ └── user.js │ ├── routes │ │ ├── Home.jsx │ │ ├── Login.jsx │ │ ├── NotFound.jsx │ │ └── Private.jsx │ ├── store │ │ └── index.js │ └── vendor │ │ ├── modernizr-custom.js │ │ └── rxjs.js └── styles │ ├── components │ ├── _alert.scss │ ├── _footer.scss │ ├── _header.scss │ ├── _loader.scss │ ├── _logo.scss │ └── _system-alerts.scss │ ├── layout │ ├── _app.scss │ └── _root.scss │ ├── main.scss │ ├── modules │ ├── _animations.scss │ ├── _buttons.scss │ ├── _icons.scss │ └── _transitions.scss │ ├── routes │ ├── _home.scss │ ├── _not-found.scss │ └── _private.scss │ ├── utilities │ ├── _functions.scss │ ├── _grid.scss │ └── _mixins.scss │ ├── variables │ ├── _app.scss │ ├── _bootstrap.scss │ └── _typography.scss │ └── vendor │ └── _bootstrap.scss ├── assets ├── fonts │ ├── icon-font-v3.svg │ ├── icon-font-v3.ttf │ └── icon-font-v3.woff ├── index.html ├── manifest.json └── media │ ├── brand │ ├── icon.png │ └── icon.svg │ ├── icons │ ├── apple-touch-icon.png │ ├── favicon-16x16.png │ ├── favicon-32x32.png │ ├── favicon.ico │ ├── icon-144x144.png │ ├── icon-192x192.png │ ├── icon-512x512.png │ ├── icon-96x96.png │ └── safari-pinned-tab.svg │ ├── images │ └── og-image-v1.png │ └── logos │ ├── jest.svg │ ├── nightwatch.svg │ ├── react-router.svg │ ├── react.svg │ ├── reactivex.svg │ ├── redux-observable.svg │ ├── redux.svg │ └── webpack.svg ├── config ├── env.js ├── esdoc.json ├── jest.config.js ├── modernizrrc.json ├── paths.js ├── webpack.config.base.js ├── webpack.config.dev.js ├── webpack.config.prod.js └── webpackDevServer.js ├── package.json ├── test ├── .eslintrc ├── __mocks__ │ └── react-router-dom.js ├── __setup__ │ ├── fileMock.js │ ├── index.js │ ├── mockedStore.js │ ├── moduleMock.js │ ├── nightwatch.conf.js │ ├── shim.js │ └── styleMock.js ├── __snapshots__ │ └── index.spec.js.snap ├── actions │ └── app.spec.js ├── components │ ├── Alert.spec.js │ ├── Footer.spec.js │ ├── Header.spec.js │ ├── Loader.spec.js │ ├── Logo.spec.js │ ├── SystemAlerts.spec.js │ └── __snapshots__ │ │ ├── Footer.spec.js.snap │ │ ├── Header.spec.js.snap │ │ ├── Loader.spec.js.snap │ │ └── Logo.spec.js.snap ├── containers │ └── App.spec.js ├── epics │ ├── github.spec.js │ └── user.spec.js ├── index.spec.js ├── modules │ ├── RoutePrivate.spec.js │ ├── RoutePublic.spec.js │ ├── __snapshots__ │ │ ├── RoutePrivate.spec.js.snap │ │ ├── RoutePublic.spec.js.snap │ │ ├── client.spec.js.snap │ │ └── helpers.spec.js.snap │ ├── client.spec.js │ └── helpers.spec.js ├── reducers │ ├── __snapshots__ │ │ ├── app.spec.js.snap │ │ ├── github.spec.js.snap │ │ └── user.spec.js.snap │ ├── app.spec.js │ ├── github.spec.js │ └── user.spec.js ├── routes │ ├── Home.spec.js │ ├── Login.spec.js │ ├── NotFound.spec.js │ ├── Private.spec.js │ └── __snapshots__ │ │ ├── Home.spec.js.snap │ │ ├── Login.spec.js.snap │ │ ├── NotFound.spec.js.snap │ │ └── Private.spec.js.snap ├── store │ └── index.spec.js └── ui │ └── ui.nightwatch.js └── tools ├── index.js └── start.js /.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gilbarbara/react-redux-observables-boilerplate/HEAD/.babelrc -------------------------------------------------------------------------------- /.codeclimate.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gilbarbara/react-redux-observables-boilerplate/HEAD/.codeclimate.yml -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gilbarbara/react-redux-observables-boilerplate/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gilbarbara/react-redux-observables-boilerplate/HEAD/.eslintrc -------------------------------------------------------------------------------- /.flowconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gilbarbara/react-redux-observables-boilerplate/HEAD/.flowconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gilbarbara/react-redux-observables-boilerplate/HEAD/.gitignore -------------------------------------------------------------------------------- /.stylelintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gilbarbara/react-redux-observables-boilerplate/HEAD/.stylelintrc -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gilbarbara/react-redux-observables-boilerplate/HEAD/.travis.yml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gilbarbara/react-redux-observables-boilerplate/HEAD/README.md -------------------------------------------------------------------------------- /app/.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gilbarbara/react-redux-observables-boilerplate/HEAD/app/.htaccess -------------------------------------------------------------------------------- /app/index.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gilbarbara/react-redux-observables-boilerplate/HEAD/app/index.ejs -------------------------------------------------------------------------------- /app/robots.txt: -------------------------------------------------------------------------------- 1 | # robotstxt.org/ 2 | 3 | User-agent: * 4 | Disallow: 5 | -------------------------------------------------------------------------------- /app/scripts/actions/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gilbarbara/react-redux-observables-boilerplate/HEAD/app/scripts/actions/app.js -------------------------------------------------------------------------------- /app/scripts/actions/github.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gilbarbara/react-redux-observables-boilerplate/HEAD/app/scripts/actions/github.js -------------------------------------------------------------------------------- /app/scripts/actions/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gilbarbara/react-redux-observables-boilerplate/HEAD/app/scripts/actions/index.js -------------------------------------------------------------------------------- /app/scripts/actions/user.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gilbarbara/react-redux-observables-boilerplate/HEAD/app/scripts/actions/user.js -------------------------------------------------------------------------------- /app/scripts/components/Alert.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gilbarbara/react-redux-observables-boilerplate/HEAD/app/scripts/components/Alert.jsx -------------------------------------------------------------------------------- /app/scripts/components/Footer.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gilbarbara/react-redux-observables-boilerplate/HEAD/app/scripts/components/Footer.jsx -------------------------------------------------------------------------------- /app/scripts/components/Header.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gilbarbara/react-redux-observables-boilerplate/HEAD/app/scripts/components/Header.jsx -------------------------------------------------------------------------------- /app/scripts/components/Loader.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gilbarbara/react-redux-observables-boilerplate/HEAD/app/scripts/components/Loader.jsx -------------------------------------------------------------------------------- /app/scripts/components/Logo.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gilbarbara/react-redux-observables-boilerplate/HEAD/app/scripts/components/Logo.jsx -------------------------------------------------------------------------------- /app/scripts/components/SystemAlerts.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gilbarbara/react-redux-observables-boilerplate/HEAD/app/scripts/components/SystemAlerts.jsx -------------------------------------------------------------------------------- /app/scripts/components/Transition.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gilbarbara/react-redux-observables-boilerplate/HEAD/app/scripts/components/Transition.jsx -------------------------------------------------------------------------------- /app/scripts/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gilbarbara/react-redux-observables-boilerplate/HEAD/app/scripts/config.js -------------------------------------------------------------------------------- /app/scripts/constants/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gilbarbara/react-redux-observables-boilerplate/HEAD/app/scripts/constants/index.js -------------------------------------------------------------------------------- /app/scripts/containers/App.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gilbarbara/react-redux-observables-boilerplate/HEAD/app/scripts/containers/App.jsx -------------------------------------------------------------------------------- /app/scripts/epics/github.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gilbarbara/react-redux-observables-boilerplate/HEAD/app/scripts/epics/github.js -------------------------------------------------------------------------------- /app/scripts/epics/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gilbarbara/react-redux-observables-boilerplate/HEAD/app/scripts/epics/index.js -------------------------------------------------------------------------------- /app/scripts/epics/user.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gilbarbara/react-redux-observables-boilerplate/HEAD/app/scripts/epics/user.js -------------------------------------------------------------------------------- /app/scripts/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gilbarbara/react-redux-observables-boilerplate/HEAD/app/scripts/index.jsx -------------------------------------------------------------------------------- /app/scripts/modules/RoutePrivate.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gilbarbara/react-redux-observables-boilerplate/HEAD/app/scripts/modules/RoutePrivate.jsx -------------------------------------------------------------------------------- /app/scripts/modules/RoutePublic.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gilbarbara/react-redux-observables-boilerplate/HEAD/app/scripts/modules/RoutePublic.jsx -------------------------------------------------------------------------------- /app/scripts/modules/client.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gilbarbara/react-redux-observables-boilerplate/HEAD/app/scripts/modules/client.js -------------------------------------------------------------------------------- /app/scripts/modules/helpers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gilbarbara/react-redux-observables-boilerplate/HEAD/app/scripts/modules/helpers.js -------------------------------------------------------------------------------- /app/scripts/modules/history.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gilbarbara/react-redux-observables-boilerplate/HEAD/app/scripts/modules/history.js -------------------------------------------------------------------------------- /app/scripts/reducers/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gilbarbara/react-redux-observables-boilerplate/HEAD/app/scripts/reducers/app.js -------------------------------------------------------------------------------- /app/scripts/reducers/github.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gilbarbara/react-redux-observables-boilerplate/HEAD/app/scripts/reducers/github.js -------------------------------------------------------------------------------- /app/scripts/reducers/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gilbarbara/react-redux-observables-boilerplate/HEAD/app/scripts/reducers/index.js -------------------------------------------------------------------------------- /app/scripts/reducers/user.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gilbarbara/react-redux-observables-boilerplate/HEAD/app/scripts/reducers/user.js -------------------------------------------------------------------------------- /app/scripts/routes/Home.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gilbarbara/react-redux-observables-boilerplate/HEAD/app/scripts/routes/Home.jsx -------------------------------------------------------------------------------- /app/scripts/routes/Login.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gilbarbara/react-redux-observables-boilerplate/HEAD/app/scripts/routes/Login.jsx -------------------------------------------------------------------------------- /app/scripts/routes/NotFound.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gilbarbara/react-redux-observables-boilerplate/HEAD/app/scripts/routes/NotFound.jsx -------------------------------------------------------------------------------- /app/scripts/routes/Private.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gilbarbara/react-redux-observables-boilerplate/HEAD/app/scripts/routes/Private.jsx -------------------------------------------------------------------------------- /app/scripts/store/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gilbarbara/react-redux-observables-boilerplate/HEAD/app/scripts/store/index.js -------------------------------------------------------------------------------- /app/scripts/vendor/modernizr-custom.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gilbarbara/react-redux-observables-boilerplate/HEAD/app/scripts/vendor/modernizr-custom.js -------------------------------------------------------------------------------- /app/scripts/vendor/rxjs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gilbarbara/react-redux-observables-boilerplate/HEAD/app/scripts/vendor/rxjs.js -------------------------------------------------------------------------------- /app/styles/components/_alert.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gilbarbara/react-redux-observables-boilerplate/HEAD/app/styles/components/_alert.scss -------------------------------------------------------------------------------- /app/styles/components/_footer.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gilbarbara/react-redux-observables-boilerplate/HEAD/app/styles/components/_footer.scss -------------------------------------------------------------------------------- /app/styles/components/_header.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gilbarbara/react-redux-observables-boilerplate/HEAD/app/styles/components/_header.scss -------------------------------------------------------------------------------- /app/styles/components/_loader.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gilbarbara/react-redux-observables-boilerplate/HEAD/app/styles/components/_loader.scss -------------------------------------------------------------------------------- /app/styles/components/_logo.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gilbarbara/react-redux-observables-boilerplate/HEAD/app/styles/components/_logo.scss -------------------------------------------------------------------------------- /app/styles/components/_system-alerts.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gilbarbara/react-redux-observables-boilerplate/HEAD/app/styles/components/_system-alerts.scss -------------------------------------------------------------------------------- /app/styles/layout/_app.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gilbarbara/react-redux-observables-boilerplate/HEAD/app/styles/layout/_app.scss -------------------------------------------------------------------------------- /app/styles/layout/_root.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gilbarbara/react-redux-observables-boilerplate/HEAD/app/styles/layout/_root.scss -------------------------------------------------------------------------------- /app/styles/main.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gilbarbara/react-redux-observables-boilerplate/HEAD/app/styles/main.scss -------------------------------------------------------------------------------- /app/styles/modules/_animations.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gilbarbara/react-redux-observables-boilerplate/HEAD/app/styles/modules/_animations.scss -------------------------------------------------------------------------------- /app/styles/modules/_buttons.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gilbarbara/react-redux-observables-boilerplate/HEAD/app/styles/modules/_buttons.scss -------------------------------------------------------------------------------- /app/styles/modules/_icons.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gilbarbara/react-redux-observables-boilerplate/HEAD/app/styles/modules/_icons.scss -------------------------------------------------------------------------------- /app/styles/modules/_transitions.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gilbarbara/react-redux-observables-boilerplate/HEAD/app/styles/modules/_transitions.scss -------------------------------------------------------------------------------- /app/styles/routes/_home.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gilbarbara/react-redux-observables-boilerplate/HEAD/app/styles/routes/_home.scss -------------------------------------------------------------------------------- /app/styles/routes/_not-found.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gilbarbara/react-redux-observables-boilerplate/HEAD/app/styles/routes/_not-found.scss -------------------------------------------------------------------------------- /app/styles/routes/_private.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gilbarbara/react-redux-observables-boilerplate/HEAD/app/styles/routes/_private.scss -------------------------------------------------------------------------------- /app/styles/utilities/_functions.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gilbarbara/react-redux-observables-boilerplate/HEAD/app/styles/utilities/_functions.scss -------------------------------------------------------------------------------- /app/styles/utilities/_grid.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gilbarbara/react-redux-observables-boilerplate/HEAD/app/styles/utilities/_grid.scss -------------------------------------------------------------------------------- /app/styles/utilities/_mixins.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gilbarbara/react-redux-observables-boilerplate/HEAD/app/styles/utilities/_mixins.scss -------------------------------------------------------------------------------- /app/styles/variables/_app.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gilbarbara/react-redux-observables-boilerplate/HEAD/app/styles/variables/_app.scss -------------------------------------------------------------------------------- /app/styles/variables/_bootstrap.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gilbarbara/react-redux-observables-boilerplate/HEAD/app/styles/variables/_bootstrap.scss -------------------------------------------------------------------------------- /app/styles/variables/_typography.scss: -------------------------------------------------------------------------------- 1 | @import url('//fonts.googleapis.com/css?family=Lato:400,700'); 2 | -------------------------------------------------------------------------------- /app/styles/vendor/_bootstrap.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gilbarbara/react-redux-observables-boilerplate/HEAD/app/styles/vendor/_bootstrap.scss -------------------------------------------------------------------------------- /assets/fonts/icon-font-v3.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gilbarbara/react-redux-observables-boilerplate/HEAD/assets/fonts/icon-font-v3.svg -------------------------------------------------------------------------------- /assets/fonts/icon-font-v3.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gilbarbara/react-redux-observables-boilerplate/HEAD/assets/fonts/icon-font-v3.ttf -------------------------------------------------------------------------------- /assets/fonts/icon-font-v3.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gilbarbara/react-redux-observables-boilerplate/HEAD/assets/fonts/icon-font-v3.woff -------------------------------------------------------------------------------- /assets/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gilbarbara/react-redux-observables-boilerplate/HEAD/assets/index.html -------------------------------------------------------------------------------- /assets/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gilbarbara/react-redux-observables-boilerplate/HEAD/assets/manifest.json -------------------------------------------------------------------------------- /assets/media/brand/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gilbarbara/react-redux-observables-boilerplate/HEAD/assets/media/brand/icon.png -------------------------------------------------------------------------------- /assets/media/brand/icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gilbarbara/react-redux-observables-boilerplate/HEAD/assets/media/brand/icon.svg -------------------------------------------------------------------------------- /assets/media/icons/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gilbarbara/react-redux-observables-boilerplate/HEAD/assets/media/icons/apple-touch-icon.png -------------------------------------------------------------------------------- /assets/media/icons/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gilbarbara/react-redux-observables-boilerplate/HEAD/assets/media/icons/favicon-16x16.png -------------------------------------------------------------------------------- /assets/media/icons/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gilbarbara/react-redux-observables-boilerplate/HEAD/assets/media/icons/favicon-32x32.png -------------------------------------------------------------------------------- /assets/media/icons/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gilbarbara/react-redux-observables-boilerplate/HEAD/assets/media/icons/favicon.ico -------------------------------------------------------------------------------- /assets/media/icons/icon-144x144.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gilbarbara/react-redux-observables-boilerplate/HEAD/assets/media/icons/icon-144x144.png -------------------------------------------------------------------------------- /assets/media/icons/icon-192x192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gilbarbara/react-redux-observables-boilerplate/HEAD/assets/media/icons/icon-192x192.png -------------------------------------------------------------------------------- /assets/media/icons/icon-512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gilbarbara/react-redux-observables-boilerplate/HEAD/assets/media/icons/icon-512x512.png -------------------------------------------------------------------------------- /assets/media/icons/icon-96x96.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gilbarbara/react-redux-observables-boilerplate/HEAD/assets/media/icons/icon-96x96.png -------------------------------------------------------------------------------- /assets/media/icons/safari-pinned-tab.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gilbarbara/react-redux-observables-boilerplate/HEAD/assets/media/icons/safari-pinned-tab.svg -------------------------------------------------------------------------------- /assets/media/images/og-image-v1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gilbarbara/react-redux-observables-boilerplate/HEAD/assets/media/images/og-image-v1.png -------------------------------------------------------------------------------- /assets/media/logos/jest.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gilbarbara/react-redux-observables-boilerplate/HEAD/assets/media/logos/jest.svg -------------------------------------------------------------------------------- /assets/media/logos/nightwatch.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gilbarbara/react-redux-observables-boilerplate/HEAD/assets/media/logos/nightwatch.svg -------------------------------------------------------------------------------- /assets/media/logos/react-router.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gilbarbara/react-redux-observables-boilerplate/HEAD/assets/media/logos/react-router.svg -------------------------------------------------------------------------------- /assets/media/logos/react.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gilbarbara/react-redux-observables-boilerplate/HEAD/assets/media/logos/react.svg -------------------------------------------------------------------------------- /assets/media/logos/reactivex.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gilbarbara/react-redux-observables-boilerplate/HEAD/assets/media/logos/reactivex.svg -------------------------------------------------------------------------------- /assets/media/logos/redux-observable.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gilbarbara/react-redux-observables-boilerplate/HEAD/assets/media/logos/redux-observable.svg -------------------------------------------------------------------------------- /assets/media/logos/redux.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gilbarbara/react-redux-observables-boilerplate/HEAD/assets/media/logos/redux.svg -------------------------------------------------------------------------------- /assets/media/logos/webpack.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gilbarbara/react-redux-observables-boilerplate/HEAD/assets/media/logos/webpack.svg -------------------------------------------------------------------------------- /config/env.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gilbarbara/react-redux-observables-boilerplate/HEAD/config/env.js -------------------------------------------------------------------------------- /config/esdoc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gilbarbara/react-redux-observables-boilerplate/HEAD/config/esdoc.json -------------------------------------------------------------------------------- /config/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gilbarbara/react-redux-observables-boilerplate/HEAD/config/jest.config.js -------------------------------------------------------------------------------- /config/modernizrrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gilbarbara/react-redux-observables-boilerplate/HEAD/config/modernizrrc.json -------------------------------------------------------------------------------- /config/paths.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gilbarbara/react-redux-observables-boilerplate/HEAD/config/paths.js -------------------------------------------------------------------------------- /config/webpack.config.base.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gilbarbara/react-redux-observables-boilerplate/HEAD/config/webpack.config.base.js -------------------------------------------------------------------------------- /config/webpack.config.dev.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gilbarbara/react-redux-observables-boilerplate/HEAD/config/webpack.config.dev.js -------------------------------------------------------------------------------- /config/webpack.config.prod.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gilbarbara/react-redux-observables-boilerplate/HEAD/config/webpack.config.prod.js -------------------------------------------------------------------------------- /config/webpackDevServer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gilbarbara/react-redux-observables-boilerplate/HEAD/config/webpackDevServer.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gilbarbara/react-redux-observables-boilerplate/HEAD/package.json -------------------------------------------------------------------------------- /test/.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gilbarbara/react-redux-observables-boilerplate/HEAD/test/.eslintrc -------------------------------------------------------------------------------- /test/__mocks__/react-router-dom.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gilbarbara/react-redux-observables-boilerplate/HEAD/test/__mocks__/react-router-dom.js -------------------------------------------------------------------------------- /test/__setup__/fileMock.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gilbarbara/react-redux-observables-boilerplate/HEAD/test/__setup__/fileMock.js -------------------------------------------------------------------------------- /test/__setup__/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gilbarbara/react-redux-observables-boilerplate/HEAD/test/__setup__/index.js -------------------------------------------------------------------------------- /test/__setup__/mockedStore.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gilbarbara/react-redux-observables-boilerplate/HEAD/test/__setup__/mockedStore.js -------------------------------------------------------------------------------- /test/__setup__/moduleMock.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gilbarbara/react-redux-observables-boilerplate/HEAD/test/__setup__/moduleMock.js -------------------------------------------------------------------------------- /test/__setup__/nightwatch.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gilbarbara/react-redux-observables-boilerplate/HEAD/test/__setup__/nightwatch.conf.js -------------------------------------------------------------------------------- /test/__setup__/shim.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gilbarbara/react-redux-observables-boilerplate/HEAD/test/__setup__/shim.js -------------------------------------------------------------------------------- /test/__setup__/styleMock.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gilbarbara/react-redux-observables-boilerplate/HEAD/test/__setup__/styleMock.js -------------------------------------------------------------------------------- /test/__snapshots__/index.spec.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gilbarbara/react-redux-observables-boilerplate/HEAD/test/__snapshots__/index.spec.js.snap -------------------------------------------------------------------------------- /test/actions/app.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gilbarbara/react-redux-observables-boilerplate/HEAD/test/actions/app.spec.js -------------------------------------------------------------------------------- /test/components/Alert.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gilbarbara/react-redux-observables-boilerplate/HEAD/test/components/Alert.spec.js -------------------------------------------------------------------------------- /test/components/Footer.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gilbarbara/react-redux-observables-boilerplate/HEAD/test/components/Footer.spec.js -------------------------------------------------------------------------------- /test/components/Header.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gilbarbara/react-redux-observables-boilerplate/HEAD/test/components/Header.spec.js -------------------------------------------------------------------------------- /test/components/Loader.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gilbarbara/react-redux-observables-boilerplate/HEAD/test/components/Loader.spec.js -------------------------------------------------------------------------------- /test/components/Logo.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gilbarbara/react-redux-observables-boilerplate/HEAD/test/components/Logo.spec.js -------------------------------------------------------------------------------- /test/components/SystemAlerts.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gilbarbara/react-redux-observables-boilerplate/HEAD/test/components/SystemAlerts.spec.js -------------------------------------------------------------------------------- /test/components/__snapshots__/Footer.spec.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gilbarbara/react-redux-observables-boilerplate/HEAD/test/components/__snapshots__/Footer.spec.js.snap -------------------------------------------------------------------------------- /test/components/__snapshots__/Header.spec.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gilbarbara/react-redux-observables-boilerplate/HEAD/test/components/__snapshots__/Header.spec.js.snap -------------------------------------------------------------------------------- /test/components/__snapshots__/Loader.spec.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gilbarbara/react-redux-observables-boilerplate/HEAD/test/components/__snapshots__/Loader.spec.js.snap -------------------------------------------------------------------------------- /test/components/__snapshots__/Logo.spec.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gilbarbara/react-redux-observables-boilerplate/HEAD/test/components/__snapshots__/Logo.spec.js.snap -------------------------------------------------------------------------------- /test/containers/App.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gilbarbara/react-redux-observables-boilerplate/HEAD/test/containers/App.spec.js -------------------------------------------------------------------------------- /test/epics/github.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gilbarbara/react-redux-observables-boilerplate/HEAD/test/epics/github.spec.js -------------------------------------------------------------------------------- /test/epics/user.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gilbarbara/react-redux-observables-boilerplate/HEAD/test/epics/user.spec.js -------------------------------------------------------------------------------- /test/index.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gilbarbara/react-redux-observables-boilerplate/HEAD/test/index.spec.js -------------------------------------------------------------------------------- /test/modules/RoutePrivate.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gilbarbara/react-redux-observables-boilerplate/HEAD/test/modules/RoutePrivate.spec.js -------------------------------------------------------------------------------- /test/modules/RoutePublic.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gilbarbara/react-redux-observables-boilerplate/HEAD/test/modules/RoutePublic.spec.js -------------------------------------------------------------------------------- /test/modules/__snapshots__/RoutePrivate.spec.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gilbarbara/react-redux-observables-boilerplate/HEAD/test/modules/__snapshots__/RoutePrivate.spec.js.snap -------------------------------------------------------------------------------- /test/modules/__snapshots__/RoutePublic.spec.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gilbarbara/react-redux-observables-boilerplate/HEAD/test/modules/__snapshots__/RoutePublic.spec.js.snap -------------------------------------------------------------------------------- /test/modules/__snapshots__/client.spec.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gilbarbara/react-redux-observables-boilerplate/HEAD/test/modules/__snapshots__/client.spec.js.snap -------------------------------------------------------------------------------- /test/modules/__snapshots__/helpers.spec.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gilbarbara/react-redux-observables-boilerplate/HEAD/test/modules/__snapshots__/helpers.spec.js.snap -------------------------------------------------------------------------------- /test/modules/client.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gilbarbara/react-redux-observables-boilerplate/HEAD/test/modules/client.spec.js -------------------------------------------------------------------------------- /test/modules/helpers.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gilbarbara/react-redux-observables-boilerplate/HEAD/test/modules/helpers.spec.js -------------------------------------------------------------------------------- /test/reducers/__snapshots__/app.spec.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gilbarbara/react-redux-observables-boilerplate/HEAD/test/reducers/__snapshots__/app.spec.js.snap -------------------------------------------------------------------------------- /test/reducers/__snapshots__/github.spec.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gilbarbara/react-redux-observables-boilerplate/HEAD/test/reducers/__snapshots__/github.spec.js.snap -------------------------------------------------------------------------------- /test/reducers/__snapshots__/user.spec.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gilbarbara/react-redux-observables-boilerplate/HEAD/test/reducers/__snapshots__/user.spec.js.snap -------------------------------------------------------------------------------- /test/reducers/app.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gilbarbara/react-redux-observables-boilerplate/HEAD/test/reducers/app.spec.js -------------------------------------------------------------------------------- /test/reducers/github.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gilbarbara/react-redux-observables-boilerplate/HEAD/test/reducers/github.spec.js -------------------------------------------------------------------------------- /test/reducers/user.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gilbarbara/react-redux-observables-boilerplate/HEAD/test/reducers/user.spec.js -------------------------------------------------------------------------------- /test/routes/Home.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gilbarbara/react-redux-observables-boilerplate/HEAD/test/routes/Home.spec.js -------------------------------------------------------------------------------- /test/routes/Login.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gilbarbara/react-redux-observables-boilerplate/HEAD/test/routes/Login.spec.js -------------------------------------------------------------------------------- /test/routes/NotFound.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gilbarbara/react-redux-observables-boilerplate/HEAD/test/routes/NotFound.spec.js -------------------------------------------------------------------------------- /test/routes/Private.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gilbarbara/react-redux-observables-boilerplate/HEAD/test/routes/Private.spec.js -------------------------------------------------------------------------------- /test/routes/__snapshots__/Home.spec.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gilbarbara/react-redux-observables-boilerplate/HEAD/test/routes/__snapshots__/Home.spec.js.snap -------------------------------------------------------------------------------- /test/routes/__snapshots__/Login.spec.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gilbarbara/react-redux-observables-boilerplate/HEAD/test/routes/__snapshots__/Login.spec.js.snap -------------------------------------------------------------------------------- /test/routes/__snapshots__/NotFound.spec.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gilbarbara/react-redux-observables-boilerplate/HEAD/test/routes/__snapshots__/NotFound.spec.js.snap -------------------------------------------------------------------------------- /test/routes/__snapshots__/Private.spec.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gilbarbara/react-redux-observables-boilerplate/HEAD/test/routes/__snapshots__/Private.spec.js.snap -------------------------------------------------------------------------------- /test/store/index.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gilbarbara/react-redux-observables-boilerplate/HEAD/test/store/index.spec.js -------------------------------------------------------------------------------- /test/ui/ui.nightwatch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gilbarbara/react-redux-observables-boilerplate/HEAD/test/ui/ui.nightwatch.js -------------------------------------------------------------------------------- /tools/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gilbarbara/react-redux-observables-boilerplate/HEAD/tools/index.js -------------------------------------------------------------------------------- /tools/start.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gilbarbara/react-redux-observables-boilerplate/HEAD/tools/start.js --------------------------------------------------------------------------------