├── .github ├── FUNDING.yml └── ISSUE_TEMPLATE ├── .gitignore ├── .travis.yml ├── CHANGELOG.md ├── LICENSE.md ├── README.md ├── how-to-translate.md ├── img ├── bootstrap-padded-90.png ├── bootstrap-padded.png ├── chai.png ├── eslint-padded-90.png ├── eslint-padded.png ├── eslint.png ├── flow-padded-90.png ├── flow-padded.png ├── flow.png ├── jest-padded-90.png ├── jest-padded.png ├── jest.png ├── js-padded.png ├── js.png ├── mocha.png ├── npm.png ├── pm2-padded-90.png ├── pm2-padded.png ├── pm2.png ├── react-padded-90.png ├── react-padded.png ├── react-router-padded-90.png ├── react-router-padded.png ├── react-router.png ├── react.png ├── redux-padded-90.png ├── redux-padded.png ├── redux.png ├── webpack-padded-90.png ├── webpack-padded.png ├── webpack.png ├── yarn-padded-90.png ├── yarn-padded.png └── yarn.png ├── mdlint.js ├── package.json ├── tutorial ├── 01-node-yarn-package-json.md ├── 02-babel-es6-eslint-flow-jest-husky.md ├── 03-express-nodemon-pm2.md ├── 04-webpack-react-hmr.md ├── 05-redux-immutable-fetch.md ├── 06-react-router-ssr-helmet.md ├── 07-socket-io.md ├── 08-bootstrap-jss.md └── 09-travis-coveralls-heroku.md └── yarn.lock /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | github: verekia 2 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ideaLighthouse4661/CT_dev/HEAD/.github/ISSUE_TEMPLATE -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | npm-debug.log 3 | node_modules 4 | 5 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ideaLighthouse4661/CT_dev/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ideaLighthouse4661/CT_dev/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ideaLighthouse4661/CT_dev/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ideaLighthouse4661/CT_dev/HEAD/README.md -------------------------------------------------------------------------------- /how-to-translate.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ideaLighthouse4661/CT_dev/HEAD/how-to-translate.md -------------------------------------------------------------------------------- /img/bootstrap-padded-90.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ideaLighthouse4661/CT_dev/HEAD/img/bootstrap-padded-90.png -------------------------------------------------------------------------------- /img/bootstrap-padded.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ideaLighthouse4661/CT_dev/HEAD/img/bootstrap-padded.png -------------------------------------------------------------------------------- /img/chai.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ideaLighthouse4661/CT_dev/HEAD/img/chai.png -------------------------------------------------------------------------------- /img/eslint-padded-90.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ideaLighthouse4661/CT_dev/HEAD/img/eslint-padded-90.png -------------------------------------------------------------------------------- /img/eslint-padded.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ideaLighthouse4661/CT_dev/HEAD/img/eslint-padded.png -------------------------------------------------------------------------------- /img/eslint.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ideaLighthouse4661/CT_dev/HEAD/img/eslint.png -------------------------------------------------------------------------------- /img/flow-padded-90.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ideaLighthouse4661/CT_dev/HEAD/img/flow-padded-90.png -------------------------------------------------------------------------------- /img/flow-padded.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ideaLighthouse4661/CT_dev/HEAD/img/flow-padded.png -------------------------------------------------------------------------------- /img/flow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ideaLighthouse4661/CT_dev/HEAD/img/flow.png -------------------------------------------------------------------------------- /img/jest-padded-90.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ideaLighthouse4661/CT_dev/HEAD/img/jest-padded-90.png -------------------------------------------------------------------------------- /img/jest-padded.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ideaLighthouse4661/CT_dev/HEAD/img/jest-padded.png -------------------------------------------------------------------------------- /img/jest.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ideaLighthouse4661/CT_dev/HEAD/img/jest.png -------------------------------------------------------------------------------- /img/js-padded.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ideaLighthouse4661/CT_dev/HEAD/img/js-padded.png -------------------------------------------------------------------------------- /img/js.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ideaLighthouse4661/CT_dev/HEAD/img/js.png -------------------------------------------------------------------------------- /img/mocha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ideaLighthouse4661/CT_dev/HEAD/img/mocha.png -------------------------------------------------------------------------------- /img/npm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ideaLighthouse4661/CT_dev/HEAD/img/npm.png -------------------------------------------------------------------------------- /img/pm2-padded-90.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ideaLighthouse4661/CT_dev/HEAD/img/pm2-padded-90.png -------------------------------------------------------------------------------- /img/pm2-padded.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ideaLighthouse4661/CT_dev/HEAD/img/pm2-padded.png -------------------------------------------------------------------------------- /img/pm2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ideaLighthouse4661/CT_dev/HEAD/img/pm2.png -------------------------------------------------------------------------------- /img/react-padded-90.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ideaLighthouse4661/CT_dev/HEAD/img/react-padded-90.png -------------------------------------------------------------------------------- /img/react-padded.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ideaLighthouse4661/CT_dev/HEAD/img/react-padded.png -------------------------------------------------------------------------------- /img/react-router-padded-90.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ideaLighthouse4661/CT_dev/HEAD/img/react-router-padded-90.png -------------------------------------------------------------------------------- /img/react-router-padded.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ideaLighthouse4661/CT_dev/HEAD/img/react-router-padded.png -------------------------------------------------------------------------------- /img/react-router.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ideaLighthouse4661/CT_dev/HEAD/img/react-router.png -------------------------------------------------------------------------------- /img/react.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ideaLighthouse4661/CT_dev/HEAD/img/react.png -------------------------------------------------------------------------------- /img/redux-padded-90.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ideaLighthouse4661/CT_dev/HEAD/img/redux-padded-90.png -------------------------------------------------------------------------------- /img/redux-padded.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ideaLighthouse4661/CT_dev/HEAD/img/redux-padded.png -------------------------------------------------------------------------------- /img/redux.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ideaLighthouse4661/CT_dev/HEAD/img/redux.png -------------------------------------------------------------------------------- /img/webpack-padded-90.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ideaLighthouse4661/CT_dev/HEAD/img/webpack-padded-90.png -------------------------------------------------------------------------------- /img/webpack-padded.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ideaLighthouse4661/CT_dev/HEAD/img/webpack-padded.png -------------------------------------------------------------------------------- /img/webpack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ideaLighthouse4661/CT_dev/HEAD/img/webpack.png -------------------------------------------------------------------------------- /img/yarn-padded-90.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ideaLighthouse4661/CT_dev/HEAD/img/yarn-padded-90.png -------------------------------------------------------------------------------- /img/yarn-padded.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ideaLighthouse4661/CT_dev/HEAD/img/yarn-padded.png -------------------------------------------------------------------------------- /img/yarn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ideaLighthouse4661/CT_dev/HEAD/img/yarn.png -------------------------------------------------------------------------------- /mdlint.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ideaLighthouse4661/CT_dev/HEAD/mdlint.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ideaLighthouse4661/CT_dev/HEAD/package.json -------------------------------------------------------------------------------- /tutorial/01-node-yarn-package-json.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ideaLighthouse4661/CT_dev/HEAD/tutorial/01-node-yarn-package-json.md -------------------------------------------------------------------------------- /tutorial/02-babel-es6-eslint-flow-jest-husky.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ideaLighthouse4661/CT_dev/HEAD/tutorial/02-babel-es6-eslint-flow-jest-husky.md -------------------------------------------------------------------------------- /tutorial/03-express-nodemon-pm2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ideaLighthouse4661/CT_dev/HEAD/tutorial/03-express-nodemon-pm2.md -------------------------------------------------------------------------------- /tutorial/04-webpack-react-hmr.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ideaLighthouse4661/CT_dev/HEAD/tutorial/04-webpack-react-hmr.md -------------------------------------------------------------------------------- /tutorial/05-redux-immutable-fetch.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ideaLighthouse4661/CT_dev/HEAD/tutorial/05-redux-immutable-fetch.md -------------------------------------------------------------------------------- /tutorial/06-react-router-ssr-helmet.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ideaLighthouse4661/CT_dev/HEAD/tutorial/06-react-router-ssr-helmet.md -------------------------------------------------------------------------------- /tutorial/07-socket-io.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ideaLighthouse4661/CT_dev/HEAD/tutorial/07-socket-io.md -------------------------------------------------------------------------------- /tutorial/08-bootstrap-jss.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ideaLighthouse4661/CT_dev/HEAD/tutorial/08-bootstrap-jss.md -------------------------------------------------------------------------------- /tutorial/09-travis-coveralls-heroku.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ideaLighthouse4661/CT_dev/HEAD/tutorial/09-travis-coveralls-heroku.md -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ideaLighthouse4661/CT_dev/HEAD/yarn.lock --------------------------------------------------------------------------------