├── .editorconfig ├── .eslintignore ├── .eslintrc ├── .gitignore ├── LICENSE.md ├── Procfile ├── README.md ├── configs ├── webpack.client-watch.js ├── webpack.client.js ├── webpack.server-watch.js └── webpack.server.js ├── package.json ├── src ├── actions │ ├── StargazersActions.js │ └── actionTypes.js ├── client.js ├── components │ ├── About.js │ ├── Header.js │ ├── Home.js │ └── User.js ├── containers │ ├── RadiumContainer.js │ └── StargazersContainer.js ├── reducers │ ├── index.js │ └── stargazers.js ├── routes.js ├── server.js └── store.js ├── static ├── favicon.ico └── logo.svg └── yarn.lock /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luandro/hapi-universal-redux/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luandro/hapi-universal-redux/HEAD/.eslintignore -------------------------------------------------------------------------------- /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luandro/hapi-universal-redux/HEAD/.eslintrc -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luandro/hapi-universal-redux/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luandro/hapi-universal-redux/HEAD/LICENSE.md -------------------------------------------------------------------------------- /Procfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luandro/hapi-universal-redux/HEAD/Procfile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luandro/hapi-universal-redux/HEAD/README.md -------------------------------------------------------------------------------- /configs/webpack.client-watch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luandro/hapi-universal-redux/HEAD/configs/webpack.client-watch.js -------------------------------------------------------------------------------- /configs/webpack.client.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luandro/hapi-universal-redux/HEAD/configs/webpack.client.js -------------------------------------------------------------------------------- /configs/webpack.server-watch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luandro/hapi-universal-redux/HEAD/configs/webpack.server-watch.js -------------------------------------------------------------------------------- /configs/webpack.server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luandro/hapi-universal-redux/HEAD/configs/webpack.server.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luandro/hapi-universal-redux/HEAD/package.json -------------------------------------------------------------------------------- /src/actions/StargazersActions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luandro/hapi-universal-redux/HEAD/src/actions/StargazersActions.js -------------------------------------------------------------------------------- /src/actions/actionTypes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luandro/hapi-universal-redux/HEAD/src/actions/actionTypes.js -------------------------------------------------------------------------------- /src/client.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luandro/hapi-universal-redux/HEAD/src/client.js -------------------------------------------------------------------------------- /src/components/About.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luandro/hapi-universal-redux/HEAD/src/components/About.js -------------------------------------------------------------------------------- /src/components/Header.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luandro/hapi-universal-redux/HEAD/src/components/Header.js -------------------------------------------------------------------------------- /src/components/Home.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luandro/hapi-universal-redux/HEAD/src/components/Home.js -------------------------------------------------------------------------------- /src/components/User.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luandro/hapi-universal-redux/HEAD/src/components/User.js -------------------------------------------------------------------------------- /src/containers/RadiumContainer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luandro/hapi-universal-redux/HEAD/src/containers/RadiumContainer.js -------------------------------------------------------------------------------- /src/containers/StargazersContainer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luandro/hapi-universal-redux/HEAD/src/containers/StargazersContainer.js -------------------------------------------------------------------------------- /src/reducers/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luandro/hapi-universal-redux/HEAD/src/reducers/index.js -------------------------------------------------------------------------------- /src/reducers/stargazers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luandro/hapi-universal-redux/HEAD/src/reducers/stargazers.js -------------------------------------------------------------------------------- /src/routes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luandro/hapi-universal-redux/HEAD/src/routes.js -------------------------------------------------------------------------------- /src/server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luandro/hapi-universal-redux/HEAD/src/server.js -------------------------------------------------------------------------------- /src/store.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luandro/hapi-universal-redux/HEAD/src/store.js -------------------------------------------------------------------------------- /static/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luandro/hapi-universal-redux/HEAD/static/favicon.ico -------------------------------------------------------------------------------- /static/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luandro/hapi-universal-redux/HEAD/static/logo.svg -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luandro/hapi-universal-redux/HEAD/yarn.lock --------------------------------------------------------------------------------