Custom CRA Template
Default CRA with cool additionals
What is installed
- Typescript
- Eslint (and some plugins)
- Prettier
- Husky
- Lint Staged
- Git Commit Message Linter
Folder Structure
public
│ favicon.ico
│ index.html
│ robots.txt
src
└───@typings
│ │ styled-components.d.ts
└───assets
│ └───styles
│ │ │ GlobalStyles.ts
│ │ │ Reset.ts
│ │ │ theme.ts
└───pages
│ └───Home
│ │ │ index.tsx
│ │ │ styles.ts
└───routes
│ │ routes.tsx
│ App.tsx
│ index.tsx
│ react-app-env.d.ts
.editorconfig
.env
.env.example
.eslintrc
.gitignore
.prettierrc
package.json
tsconfig.json
by Luan Panno :)