root_dir
│
├── app
│ │
│ ├── api <! Application REST Scripts !>
│ ├── components <! Global Components !>
│ ├── containers <! Global App Container !>
│ ├── routes <! Project Routes !>
│ ├── store <! Redux Store !>
│ ├── styles <! Global SCSS !>
│ ├── utils <! Global utils !>
│ ├── index.css
│ └── index.jsx
│
├── config <! Project Configuration Files !>
│ ├── global.vars.js
│ └── paths.js
│
├── docs <! Global Documentations !>
│ └── readme images
│
├── fonts <! Global Fonts Files !>
│
├── generators <! Generators Sources !>
│ ├── action
│ ├── api
│ ├── component
│ ├── route
│ ├── saga
# │ ├── selectors
│ └── index.js
│
├── scripts <! Build/Start scripts !>
│ ├── helpers
│ ├── commit.js
│ └── hello-there.js
│
├── utils <! Global utils !>
│ ├── logger.js
│ └── utils.js
│
├──.eslintrc.json
├──.gitattrbutes
├──.gitignore
├──.markdownlint.json
├──.nvmrc
├──.prettierrc
├── AUTHORS.md
├── index.html
├── LICENSE.md
├── MAP.md
├── package-lock.json
├── package.json
├── README.md
└── vite.config.js