├── .babelrc ├── .coveralls.yml ├── .editorconfig ├── .eslintrc.yaml ├── .github └── duskull.jpeg ├── .gitignore ├── .prettierignore ├── .prettierrc ├── .stylelintrc ├── LICENSE ├── README.md ├── config └── test │ ├── enzyme.setup.js │ ├── enzyme.theme.js │ ├── fetch.setup.js │ └── jsdom.setup.js ├── package.json ├── public └── index.html ├── server.js ├── src ├── app.js ├── components │ ├── Title │ │ ├── index.js │ │ └── index.spec.js │ ├── common │ │ ├── Either │ │ │ ├── index.js │ │ │ └── index.spec.js │ │ ├── If │ │ │ ├── index.js │ │ │ └── index.spec.js │ │ └── index.js │ └── index.js ├── containers │ ├── Ghost │ │ └── index.js │ └── index.js ├── index.js ├── mixins │ └── transition.js ├── pages │ ├── Home │ │ └── index.js │ └── index.js ├── routes │ └── index.js ├── services │ └── .gitkeep ├── styles │ ├── Content │ │ └── index.js │ ├── Wrapper │ │ └── index.js │ ├── full-container │ │ └── index.js │ ├── image-render │ │ └── index.js │ └── index.js ├── theme │ └── index.js └── utils │ └── .gitkeep ├── webpack ├── common.js ├── dev.config.js └── prod.config.js └── yarn.lock /.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvfsillva/duskull-boilerplate/HEAD/.babelrc -------------------------------------------------------------------------------- /.coveralls.yml: -------------------------------------------------------------------------------- 1 | repo_token: #PASTE TOKEN -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvfsillva/duskull-boilerplate/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintrc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvfsillva/duskull-boilerplate/HEAD/.eslintrc.yaml -------------------------------------------------------------------------------- /.github/duskull.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvfsillva/duskull-boilerplate/HEAD/.github/duskull.jpeg -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvfsillva/duskull-boilerplate/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvfsillva/duskull-boilerplate/HEAD/.prettierignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvfsillva/duskull-boilerplate/HEAD/.prettierrc -------------------------------------------------------------------------------- /.stylelintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvfsillva/duskull-boilerplate/HEAD/.stylelintrc -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvfsillva/duskull-boilerplate/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvfsillva/duskull-boilerplate/HEAD/README.md -------------------------------------------------------------------------------- /config/test/enzyme.setup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvfsillva/duskull-boilerplate/HEAD/config/test/enzyme.setup.js -------------------------------------------------------------------------------- /config/test/enzyme.theme.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvfsillva/duskull-boilerplate/HEAD/config/test/enzyme.theme.js -------------------------------------------------------------------------------- /config/test/fetch.setup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvfsillva/duskull-boilerplate/HEAD/config/test/fetch.setup.js -------------------------------------------------------------------------------- /config/test/jsdom.setup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvfsillva/duskull-boilerplate/HEAD/config/test/jsdom.setup.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvfsillva/duskull-boilerplate/HEAD/package.json -------------------------------------------------------------------------------- /public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvfsillva/duskull-boilerplate/HEAD/public/index.html -------------------------------------------------------------------------------- /server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvfsillva/duskull-boilerplate/HEAD/server.js -------------------------------------------------------------------------------- /src/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvfsillva/duskull-boilerplate/HEAD/src/app.js -------------------------------------------------------------------------------- /src/components/Title/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvfsillva/duskull-boilerplate/HEAD/src/components/Title/index.js -------------------------------------------------------------------------------- /src/components/Title/index.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvfsillva/duskull-boilerplate/HEAD/src/components/Title/index.spec.js -------------------------------------------------------------------------------- /src/components/common/Either/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvfsillva/duskull-boilerplate/HEAD/src/components/common/Either/index.js -------------------------------------------------------------------------------- /src/components/common/Either/index.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvfsillva/duskull-boilerplate/HEAD/src/components/common/Either/index.spec.js -------------------------------------------------------------------------------- /src/components/common/If/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvfsillva/duskull-boilerplate/HEAD/src/components/common/If/index.js -------------------------------------------------------------------------------- /src/components/common/If/index.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvfsillva/duskull-boilerplate/HEAD/src/components/common/If/index.spec.js -------------------------------------------------------------------------------- /src/components/common/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvfsillva/duskull-boilerplate/HEAD/src/components/common/index.js -------------------------------------------------------------------------------- /src/components/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvfsillva/duskull-boilerplate/HEAD/src/components/index.js -------------------------------------------------------------------------------- /src/containers/Ghost/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvfsillva/duskull-boilerplate/HEAD/src/containers/Ghost/index.js -------------------------------------------------------------------------------- /src/containers/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvfsillva/duskull-boilerplate/HEAD/src/containers/index.js -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvfsillva/duskull-boilerplate/HEAD/src/index.js -------------------------------------------------------------------------------- /src/mixins/transition.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvfsillva/duskull-boilerplate/HEAD/src/mixins/transition.js -------------------------------------------------------------------------------- /src/pages/Home/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvfsillva/duskull-boilerplate/HEAD/src/pages/Home/index.js -------------------------------------------------------------------------------- /src/pages/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvfsillva/duskull-boilerplate/HEAD/src/pages/index.js -------------------------------------------------------------------------------- /src/routes/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvfsillva/duskull-boilerplate/HEAD/src/routes/index.js -------------------------------------------------------------------------------- /src/services/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/styles/Content/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvfsillva/duskull-boilerplate/HEAD/src/styles/Content/index.js -------------------------------------------------------------------------------- /src/styles/Wrapper/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvfsillva/duskull-boilerplate/HEAD/src/styles/Wrapper/index.js -------------------------------------------------------------------------------- /src/styles/full-container/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvfsillva/duskull-boilerplate/HEAD/src/styles/full-container/index.js -------------------------------------------------------------------------------- /src/styles/image-render/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvfsillva/duskull-boilerplate/HEAD/src/styles/image-render/index.js -------------------------------------------------------------------------------- /src/styles/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvfsillva/duskull-boilerplate/HEAD/src/styles/index.js -------------------------------------------------------------------------------- /src/theme/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvfsillva/duskull-boilerplate/HEAD/src/theme/index.js -------------------------------------------------------------------------------- /src/utils/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /webpack/common.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvfsillva/duskull-boilerplate/HEAD/webpack/common.js -------------------------------------------------------------------------------- /webpack/dev.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvfsillva/duskull-boilerplate/HEAD/webpack/dev.config.js -------------------------------------------------------------------------------- /webpack/prod.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvfsillva/duskull-boilerplate/HEAD/webpack/prod.config.js -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvfsillva/duskull-boilerplate/HEAD/yarn.lock --------------------------------------------------------------------------------