├── .babelrc ├── .eslintrc ├── .gitignore ├── LICENSE.md ├── README.md ├── __mocks__ └── parse.js ├── config └── index.js ├── index.js ├── package.json ├── src ├── common │ ├── components │ │ ├── App │ │ │ └── App.jsx │ │ ├── ProtectedGateway │ │ │ └── ProtectedGateway.jsx │ │ ├── PublicGateway │ │ │ └── PublicGateway.jsx │ │ └── Routes │ │ │ └── Routes.jsx │ └── modules │ │ ├── action-creators │ │ └── index.js │ │ ├── action-repository │ │ └── index.js │ │ ├── combined-reducer │ │ └── index.js │ │ ├── create-action │ │ └── index.js │ │ ├── get-current-user │ │ └── index.js │ │ ├── parse-client │ │ ├── __tests__ │ │ │ └── index-test.js │ │ └── index.js │ │ ├── reducers │ │ └── index.js │ │ └── store │ │ └── index.js ├── dashboard │ └── components │ │ └── DashboardPage │ │ └── DashboardPage.jsx └── public │ ├── components │ ├── LoginPage │ │ └── LoginPage.jsx │ └── RegistrationPage │ │ └── RegistrationPage.jsx │ └── modules │ ├── action-creators │ └── index.js │ └── action-repository │ └── index.js ├── webpack.config.js └── webpack.config.production.js /.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/optimistiks/react-redux-parse-starter-kit/HEAD/.babelrc -------------------------------------------------------------------------------- /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/optimistiks/react-redux-parse-starter-kit/HEAD/.eslintrc -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | .idea 3 | www 4 | !www/index.html 5 | npm-debug.log 6 | -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/optimistiks/react-redux-parse-starter-kit/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/optimistiks/react-redux-parse-starter-kit/HEAD/README.md -------------------------------------------------------------------------------- /__mocks__/parse.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/optimistiks/react-redux-parse-starter-kit/HEAD/__mocks__/parse.js -------------------------------------------------------------------------------- /config/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/optimistiks/react-redux-parse-starter-kit/HEAD/config/index.js -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/optimistiks/react-redux-parse-starter-kit/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/optimistiks/react-redux-parse-starter-kit/HEAD/package.json -------------------------------------------------------------------------------- /src/common/components/App/App.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/optimistiks/react-redux-parse-starter-kit/HEAD/src/common/components/App/App.jsx -------------------------------------------------------------------------------- /src/common/components/ProtectedGateway/ProtectedGateway.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/optimistiks/react-redux-parse-starter-kit/HEAD/src/common/components/ProtectedGateway/ProtectedGateway.jsx -------------------------------------------------------------------------------- /src/common/components/PublicGateway/PublicGateway.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/optimistiks/react-redux-parse-starter-kit/HEAD/src/common/components/PublicGateway/PublicGateway.jsx -------------------------------------------------------------------------------- /src/common/components/Routes/Routes.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/optimistiks/react-redux-parse-starter-kit/HEAD/src/common/components/Routes/Routes.jsx -------------------------------------------------------------------------------- /src/common/modules/action-creators/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/optimistiks/react-redux-parse-starter-kit/HEAD/src/common/modules/action-creators/index.js -------------------------------------------------------------------------------- /src/common/modules/action-repository/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/optimistiks/react-redux-parse-starter-kit/HEAD/src/common/modules/action-repository/index.js -------------------------------------------------------------------------------- /src/common/modules/combined-reducer/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/optimistiks/react-redux-parse-starter-kit/HEAD/src/common/modules/combined-reducer/index.js -------------------------------------------------------------------------------- /src/common/modules/create-action/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/optimistiks/react-redux-parse-starter-kit/HEAD/src/common/modules/create-action/index.js -------------------------------------------------------------------------------- /src/common/modules/get-current-user/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/optimistiks/react-redux-parse-starter-kit/HEAD/src/common/modules/get-current-user/index.js -------------------------------------------------------------------------------- /src/common/modules/parse-client/__tests__/index-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/optimistiks/react-redux-parse-starter-kit/HEAD/src/common/modules/parse-client/__tests__/index-test.js -------------------------------------------------------------------------------- /src/common/modules/parse-client/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/optimistiks/react-redux-parse-starter-kit/HEAD/src/common/modules/parse-client/index.js -------------------------------------------------------------------------------- /src/common/modules/reducers/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/optimistiks/react-redux-parse-starter-kit/HEAD/src/common/modules/reducers/index.js -------------------------------------------------------------------------------- /src/common/modules/store/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/optimistiks/react-redux-parse-starter-kit/HEAD/src/common/modules/store/index.js -------------------------------------------------------------------------------- /src/dashboard/components/DashboardPage/DashboardPage.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/optimistiks/react-redux-parse-starter-kit/HEAD/src/dashboard/components/DashboardPage/DashboardPage.jsx -------------------------------------------------------------------------------- /src/public/components/LoginPage/LoginPage.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/optimistiks/react-redux-parse-starter-kit/HEAD/src/public/components/LoginPage/LoginPage.jsx -------------------------------------------------------------------------------- /src/public/components/RegistrationPage/RegistrationPage.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/optimistiks/react-redux-parse-starter-kit/HEAD/src/public/components/RegistrationPage/RegistrationPage.jsx -------------------------------------------------------------------------------- /src/public/modules/action-creators/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/optimistiks/react-redux-parse-starter-kit/HEAD/src/public/modules/action-creators/index.js -------------------------------------------------------------------------------- /src/public/modules/action-repository/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/optimistiks/react-redux-parse-starter-kit/HEAD/src/public/modules/action-repository/index.js -------------------------------------------------------------------------------- /webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/optimistiks/react-redux-parse-starter-kit/HEAD/webpack.config.js -------------------------------------------------------------------------------- /webpack.config.production.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/optimistiks/react-redux-parse-starter-kit/HEAD/webpack.config.production.js --------------------------------------------------------------------------------