├── .babelrc ├── .gitignore ├── LICENSE ├── Makefile ├── Readme.md ├── example ├── index.html ├── index.js └── style.css ├── index.js └── package.json /.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tj/react-fatigue-dev-boiler/HEAD/.babelrc -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | example/bundle.js 3 | .DS_Store 4 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tj/react-fatigue-dev-boiler/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- 1 | 2 | include node_modules/react-fatigue-dev/Makefile 3 | -------------------------------------------------------------------------------- /Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tj/react-fatigue-dev-boiler/HEAD/Readme.md -------------------------------------------------------------------------------- /example/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tj/react-fatigue-dev-boiler/HEAD/example/index.html -------------------------------------------------------------------------------- /example/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tj/react-fatigue-dev-boiler/HEAD/example/index.js -------------------------------------------------------------------------------- /example/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tj/react-fatigue-dev-boiler/HEAD/example/style.css -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tj/react-fatigue-dev-boiler/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tj/react-fatigue-dev-boiler/HEAD/package.json --------------------------------------------------------------------------------