├── .babelrc ├── .editorconfig ├── .eslintignore ├── .eslintrc ├── .gitattributes ├── .gitignore ├── .travis.yml ├── CHANGELOG.md ├── LICENSE.md ├── README.md ├── RELEASE-CHECKLIST.md ├── app ├── index.js └── templates │ ├── .babelrc │ ├── .editorconfig │ ├── .eslintignore │ ├── .eslintrc │ ├── .flowconfig │ ├── .gitattributes │ ├── .gitignore │ ├── .htmlhintrc │ ├── .modernizrrc │ ├── .stylelintignore │ ├── .stylelintrc │ ├── README.md │ ├── config.json │ ├── flow │ ├── CSSModule.js.flow │ └── WebpackAsset.js.flow │ ├── nightwatch.json │ ├── package.json │ ├── src │ ├── App.js │ ├── actions │ │ └── AppActions.js │ ├── assets │ │ ├── fonts │ │ │ └── .gitkeep │ │ └── images │ │ │ ├── IMG-1.jpg │ │ │ ├── IMG-1@2x.jpg │ │ │ ├── IMG-2.jpg │ │ │ ├── IMG-2@2x.jpg │ │ │ ├── plane.png │ │ │ ├── plane@2x.png │ │ │ └── test-img.png │ ├── components │ │ ├── Loader │ │ │ ├── Loader.js │ │ │ ├── index.js │ │ │ ├── messages.js │ │ │ └── styles.scss │ │ ├── TemplateTwo │ │ │ ├── TemplateTwo.js │ │ │ ├── index.js │ │ │ └── styles.scss │ │ └── Version │ │ │ ├── Version.js │ │ │ ├── index.js │ │ │ ├── messages.js │ │ │ └── styles.scss │ ├── constants │ │ ├── ActionTypes.js │ │ └── InitialState.js │ ├── containers │ │ ├── Main │ │ │ ├── Main.js │ │ │ └── index.js │ │ └── Template │ │ │ ├── Template.js │ │ │ ├── index.js │ │ │ ├── messages.js │ │ │ └── styles.scss │ ├── favicon.ico │ ├── i18n.js │ ├── index.html │ ├── main.js │ ├── manifest │ │ ├── common.js │ │ ├── index.js │ │ ├── noRetina.js │ │ └── retina.js │ ├── reducers │ │ ├── index.js │ │ └── templateReducer.js │ ├── sagas │ │ ├── index.js │ │ └── templateSaga.js │ ├── store │ │ └── configureStore.js │ ├── style │ │ ├── global.scss │ │ └── theme.scss │ ├── translations │ │ └── en.json │ └── utils │ │ ├── AppSettings.js │ │ ├── LoaderUtil.js │ │ └── WebAPIUtils.js │ ├── test │ ├── example.spec.js │ └── utils │ │ └── setup.js │ ├── teste2e │ └── example.spec.e2e.js │ ├── tools │ ├── build.js │ ├── bump.js │ ├── common │ │ └── clean.js │ ├── run.js │ ├── server.js │ └── start.js │ ├── webpack.config.js │ ├── webpack.dev.config.js │ └── webpack.prod.config.js ├── package.json └── tools └── start.js /.babelrc: -------------------------------------------------------------------------------- 1 | { 2 | "presets": ["latest"] 3 | } 4 | -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarolAltamirano/generator-react-web/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarolAltamirano/generator-react-web/HEAD/.eslintrc -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarolAltamirano/generator-react-web/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarolAltamirano/generator-react-web/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarolAltamirano/generator-react-web/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarolAltamirano/generator-react-web/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarolAltamirano/generator-react-web/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarolAltamirano/generator-react-web/HEAD/README.md -------------------------------------------------------------------------------- /RELEASE-CHECKLIST.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarolAltamirano/generator-react-web/HEAD/RELEASE-CHECKLIST.md -------------------------------------------------------------------------------- /app/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarolAltamirano/generator-react-web/HEAD/app/index.js -------------------------------------------------------------------------------- /app/templates/.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarolAltamirano/generator-react-web/HEAD/app/templates/.babelrc -------------------------------------------------------------------------------- /app/templates/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarolAltamirano/generator-react-web/HEAD/app/templates/.editorconfig -------------------------------------------------------------------------------- /app/templates/.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarolAltamirano/generator-react-web/HEAD/app/templates/.eslintignore -------------------------------------------------------------------------------- /app/templates/.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarolAltamirano/generator-react-web/HEAD/app/templates/.eslintrc -------------------------------------------------------------------------------- /app/templates/.flowconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarolAltamirano/generator-react-web/HEAD/app/templates/.flowconfig -------------------------------------------------------------------------------- /app/templates/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarolAltamirano/generator-react-web/HEAD/app/templates/.gitattributes -------------------------------------------------------------------------------- /app/templates/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarolAltamirano/generator-react-web/HEAD/app/templates/.gitignore -------------------------------------------------------------------------------- /app/templates/.htmlhintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarolAltamirano/generator-react-web/HEAD/app/templates/.htmlhintrc -------------------------------------------------------------------------------- /app/templates/.modernizrrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarolAltamirano/generator-react-web/HEAD/app/templates/.modernizrrc -------------------------------------------------------------------------------- /app/templates/.stylelintignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/templates/.stylelintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarolAltamirano/generator-react-web/HEAD/app/templates/.stylelintrc -------------------------------------------------------------------------------- /app/templates/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarolAltamirano/generator-react-web/HEAD/app/templates/README.md -------------------------------------------------------------------------------- /app/templates/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarolAltamirano/generator-react-web/HEAD/app/templates/config.json -------------------------------------------------------------------------------- /app/templates/flow/CSSModule.js.flow: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarolAltamirano/generator-react-web/HEAD/app/templates/flow/CSSModule.js.flow -------------------------------------------------------------------------------- /app/templates/flow/WebpackAsset.js.flow: -------------------------------------------------------------------------------- 1 | // @flow 2 | 3 | declare export default string; 4 | -------------------------------------------------------------------------------- /app/templates/nightwatch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarolAltamirano/generator-react-web/HEAD/app/templates/nightwatch.json -------------------------------------------------------------------------------- /app/templates/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarolAltamirano/generator-react-web/HEAD/app/templates/package.json -------------------------------------------------------------------------------- /app/templates/src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarolAltamirano/generator-react-web/HEAD/app/templates/src/App.js -------------------------------------------------------------------------------- /app/templates/src/actions/AppActions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarolAltamirano/generator-react-web/HEAD/app/templates/src/actions/AppActions.js -------------------------------------------------------------------------------- /app/templates/src/assets/fonts/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/templates/src/assets/images/IMG-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarolAltamirano/generator-react-web/HEAD/app/templates/src/assets/images/IMG-1.jpg -------------------------------------------------------------------------------- /app/templates/src/assets/images/IMG-1@2x.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarolAltamirano/generator-react-web/HEAD/app/templates/src/assets/images/IMG-1@2x.jpg -------------------------------------------------------------------------------- /app/templates/src/assets/images/IMG-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarolAltamirano/generator-react-web/HEAD/app/templates/src/assets/images/IMG-2.jpg -------------------------------------------------------------------------------- /app/templates/src/assets/images/IMG-2@2x.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarolAltamirano/generator-react-web/HEAD/app/templates/src/assets/images/IMG-2@2x.jpg -------------------------------------------------------------------------------- /app/templates/src/assets/images/plane.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarolAltamirano/generator-react-web/HEAD/app/templates/src/assets/images/plane.png -------------------------------------------------------------------------------- /app/templates/src/assets/images/plane@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarolAltamirano/generator-react-web/HEAD/app/templates/src/assets/images/plane@2x.png -------------------------------------------------------------------------------- /app/templates/src/assets/images/test-img.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarolAltamirano/generator-react-web/HEAD/app/templates/src/assets/images/test-img.png -------------------------------------------------------------------------------- /app/templates/src/components/Loader/Loader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarolAltamirano/generator-react-web/HEAD/app/templates/src/components/Loader/Loader.js -------------------------------------------------------------------------------- /app/templates/src/components/Loader/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarolAltamirano/generator-react-web/HEAD/app/templates/src/components/Loader/index.js -------------------------------------------------------------------------------- /app/templates/src/components/Loader/messages.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarolAltamirano/generator-react-web/HEAD/app/templates/src/components/Loader/messages.js -------------------------------------------------------------------------------- /app/templates/src/components/Loader/styles.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarolAltamirano/generator-react-web/HEAD/app/templates/src/components/Loader/styles.scss -------------------------------------------------------------------------------- /app/templates/src/components/TemplateTwo/TemplateTwo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarolAltamirano/generator-react-web/HEAD/app/templates/src/components/TemplateTwo/TemplateTwo.js -------------------------------------------------------------------------------- /app/templates/src/components/TemplateTwo/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarolAltamirano/generator-react-web/HEAD/app/templates/src/components/TemplateTwo/index.js -------------------------------------------------------------------------------- /app/templates/src/components/TemplateTwo/styles.scss: -------------------------------------------------------------------------------- 1 | .wrapper { 2 | padding-left: 40px; 3 | } 4 | -------------------------------------------------------------------------------- /app/templates/src/components/Version/Version.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarolAltamirano/generator-react-web/HEAD/app/templates/src/components/Version/Version.js -------------------------------------------------------------------------------- /app/templates/src/components/Version/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarolAltamirano/generator-react-web/HEAD/app/templates/src/components/Version/index.js -------------------------------------------------------------------------------- /app/templates/src/components/Version/messages.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarolAltamirano/generator-react-web/HEAD/app/templates/src/components/Version/messages.js -------------------------------------------------------------------------------- /app/templates/src/components/Version/styles.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarolAltamirano/generator-react-web/HEAD/app/templates/src/components/Version/styles.scss -------------------------------------------------------------------------------- /app/templates/src/constants/ActionTypes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarolAltamirano/generator-react-web/HEAD/app/templates/src/constants/ActionTypes.js -------------------------------------------------------------------------------- /app/templates/src/constants/InitialState.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarolAltamirano/generator-react-web/HEAD/app/templates/src/constants/InitialState.js -------------------------------------------------------------------------------- /app/templates/src/containers/Main/Main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarolAltamirano/generator-react-web/HEAD/app/templates/src/containers/Main/Main.js -------------------------------------------------------------------------------- /app/templates/src/containers/Main/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarolAltamirano/generator-react-web/HEAD/app/templates/src/containers/Main/index.js -------------------------------------------------------------------------------- /app/templates/src/containers/Template/Template.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarolAltamirano/generator-react-web/HEAD/app/templates/src/containers/Template/Template.js -------------------------------------------------------------------------------- /app/templates/src/containers/Template/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarolAltamirano/generator-react-web/HEAD/app/templates/src/containers/Template/index.js -------------------------------------------------------------------------------- /app/templates/src/containers/Template/messages.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarolAltamirano/generator-react-web/HEAD/app/templates/src/containers/Template/messages.js -------------------------------------------------------------------------------- /app/templates/src/containers/Template/styles.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarolAltamirano/generator-react-web/HEAD/app/templates/src/containers/Template/styles.scss -------------------------------------------------------------------------------- /app/templates/src/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarolAltamirano/generator-react-web/HEAD/app/templates/src/favicon.ico -------------------------------------------------------------------------------- /app/templates/src/i18n.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarolAltamirano/generator-react-web/HEAD/app/templates/src/i18n.js -------------------------------------------------------------------------------- /app/templates/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarolAltamirano/generator-react-web/HEAD/app/templates/src/index.html -------------------------------------------------------------------------------- /app/templates/src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarolAltamirano/generator-react-web/HEAD/app/templates/src/main.js -------------------------------------------------------------------------------- /app/templates/src/manifest/common.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarolAltamirano/generator-react-web/HEAD/app/templates/src/manifest/common.js -------------------------------------------------------------------------------- /app/templates/src/manifest/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarolAltamirano/generator-react-web/HEAD/app/templates/src/manifest/index.js -------------------------------------------------------------------------------- /app/templates/src/manifest/noRetina.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarolAltamirano/generator-react-web/HEAD/app/templates/src/manifest/noRetina.js -------------------------------------------------------------------------------- /app/templates/src/manifest/retina.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarolAltamirano/generator-react-web/HEAD/app/templates/src/manifest/retina.js -------------------------------------------------------------------------------- /app/templates/src/reducers/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarolAltamirano/generator-react-web/HEAD/app/templates/src/reducers/index.js -------------------------------------------------------------------------------- /app/templates/src/reducers/templateReducer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarolAltamirano/generator-react-web/HEAD/app/templates/src/reducers/templateReducer.js -------------------------------------------------------------------------------- /app/templates/src/sagas/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarolAltamirano/generator-react-web/HEAD/app/templates/src/sagas/index.js -------------------------------------------------------------------------------- /app/templates/src/sagas/templateSaga.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarolAltamirano/generator-react-web/HEAD/app/templates/src/sagas/templateSaga.js -------------------------------------------------------------------------------- /app/templates/src/store/configureStore.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarolAltamirano/generator-react-web/HEAD/app/templates/src/store/configureStore.js -------------------------------------------------------------------------------- /app/templates/src/style/global.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarolAltamirano/generator-react-web/HEAD/app/templates/src/style/global.scss -------------------------------------------------------------------------------- /app/templates/src/style/theme.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarolAltamirano/generator-react-web/HEAD/app/templates/src/style/theme.scss -------------------------------------------------------------------------------- /app/templates/src/translations/en.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarolAltamirano/generator-react-web/HEAD/app/templates/src/translations/en.json -------------------------------------------------------------------------------- /app/templates/src/utils/AppSettings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarolAltamirano/generator-react-web/HEAD/app/templates/src/utils/AppSettings.js -------------------------------------------------------------------------------- /app/templates/src/utils/LoaderUtil.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarolAltamirano/generator-react-web/HEAD/app/templates/src/utils/LoaderUtil.js -------------------------------------------------------------------------------- /app/templates/src/utils/WebAPIUtils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarolAltamirano/generator-react-web/HEAD/app/templates/src/utils/WebAPIUtils.js -------------------------------------------------------------------------------- /app/templates/test/example.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarolAltamirano/generator-react-web/HEAD/app/templates/test/example.spec.js -------------------------------------------------------------------------------- /app/templates/test/utils/setup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarolAltamirano/generator-react-web/HEAD/app/templates/test/utils/setup.js -------------------------------------------------------------------------------- /app/templates/teste2e/example.spec.e2e.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarolAltamirano/generator-react-web/HEAD/app/templates/teste2e/example.spec.e2e.js -------------------------------------------------------------------------------- /app/templates/tools/build.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarolAltamirano/generator-react-web/HEAD/app/templates/tools/build.js -------------------------------------------------------------------------------- /app/templates/tools/bump.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarolAltamirano/generator-react-web/HEAD/app/templates/tools/bump.js -------------------------------------------------------------------------------- /app/templates/tools/common/clean.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarolAltamirano/generator-react-web/HEAD/app/templates/tools/common/clean.js -------------------------------------------------------------------------------- /app/templates/tools/run.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarolAltamirano/generator-react-web/HEAD/app/templates/tools/run.js -------------------------------------------------------------------------------- /app/templates/tools/server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarolAltamirano/generator-react-web/HEAD/app/templates/tools/server.js -------------------------------------------------------------------------------- /app/templates/tools/start.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarolAltamirano/generator-react-web/HEAD/app/templates/tools/start.js -------------------------------------------------------------------------------- /app/templates/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarolAltamirano/generator-react-web/HEAD/app/templates/webpack.config.js -------------------------------------------------------------------------------- /app/templates/webpack.dev.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarolAltamirano/generator-react-web/HEAD/app/templates/webpack.dev.config.js -------------------------------------------------------------------------------- /app/templates/webpack.prod.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarolAltamirano/generator-react-web/HEAD/app/templates/webpack.prod.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarolAltamirano/generator-react-web/HEAD/package.json -------------------------------------------------------------------------------- /tools/start.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarolAltamirano/generator-react-web/HEAD/tools/start.js --------------------------------------------------------------------------------