├── .gitignore ├── .npmignore ├── README.md ├── index.js ├── package.json ├── tasks ├── checks.js ├── create-directory-content.js ├── create-project.js ├── installation.js ├── output.js └── question.js └── template ├── .DS_Store ├── .prettierignore ├── .prettierrc ├── .storybook ├── main.js └── preview.js ├── .swcrc ├── README.md ├── custom.d.ts ├── env ├── eslint.config.mjs ├── gitignore ├── jest.swc.config.js ├── package.json ├── src ├── .DS_Store ├── app.test.ts ├── app.tsx ├── assets │ ├── .DS_Store │ ├── images │ │ ├── .DS_Store │ │ └── favicon.png │ └── svg │ │ └── logo.svg ├── components │ ├── error-boundary │ │ ├── index.tsx │ │ └── layout.tsx │ └── title │ │ ├── index.tsx │ │ └── stories.tsx ├── index.html ├── index.tsx └── pages │ └── home │ ├── home.css │ └── index.tsx ├── tsconfig.json └── webpack.config.js /.gitignore: -------------------------------------------------------------------------------- 1 | /node_modules 2 | /build 3 | .DS_Store -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | /node_modules -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoneDeal0/alright-react-app/HEAD/README.md -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoneDeal0/alright-react-app/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoneDeal0/alright-react-app/HEAD/package.json -------------------------------------------------------------------------------- /tasks/checks.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoneDeal0/alright-react-app/HEAD/tasks/checks.js -------------------------------------------------------------------------------- /tasks/create-directory-content.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoneDeal0/alright-react-app/HEAD/tasks/create-directory-content.js -------------------------------------------------------------------------------- /tasks/create-project.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoneDeal0/alright-react-app/HEAD/tasks/create-project.js -------------------------------------------------------------------------------- /tasks/installation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoneDeal0/alright-react-app/HEAD/tasks/installation.js -------------------------------------------------------------------------------- /tasks/output.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoneDeal0/alright-react-app/HEAD/tasks/output.js -------------------------------------------------------------------------------- /tasks/question.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoneDeal0/alright-react-app/HEAD/tasks/question.js -------------------------------------------------------------------------------- /template/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoneDeal0/alright-react-app/HEAD/template/.DS_Store -------------------------------------------------------------------------------- /template/.prettierignore: -------------------------------------------------------------------------------- 1 | assets/ 2 | build/ 3 | node_modules/ 4 | webpack.config.js -------------------------------------------------------------------------------- /template/.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoneDeal0/alright-react-app/HEAD/template/.prettierrc -------------------------------------------------------------------------------- /template/.storybook/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoneDeal0/alright-react-app/HEAD/template/.storybook/main.js -------------------------------------------------------------------------------- /template/.storybook/preview.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoneDeal0/alright-react-app/HEAD/template/.storybook/preview.js -------------------------------------------------------------------------------- /template/.swcrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoneDeal0/alright-react-app/HEAD/template/.swcrc -------------------------------------------------------------------------------- /template/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoneDeal0/alright-react-app/HEAD/template/README.md -------------------------------------------------------------------------------- /template/custom.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoneDeal0/alright-react-app/HEAD/template/custom.d.ts -------------------------------------------------------------------------------- /template/env: -------------------------------------------------------------------------------- 1 | MY_SECRET_KEY = "12345" -------------------------------------------------------------------------------- /template/eslint.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoneDeal0/alright-react-app/HEAD/template/eslint.config.mjs -------------------------------------------------------------------------------- /template/gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoneDeal0/alright-react-app/HEAD/template/gitignore -------------------------------------------------------------------------------- /template/jest.swc.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoneDeal0/alright-react-app/HEAD/template/jest.swc.config.js -------------------------------------------------------------------------------- /template/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoneDeal0/alright-react-app/HEAD/template/package.json -------------------------------------------------------------------------------- /template/src/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoneDeal0/alright-react-app/HEAD/template/src/.DS_Store -------------------------------------------------------------------------------- /template/src/app.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoneDeal0/alright-react-app/HEAD/template/src/app.test.ts -------------------------------------------------------------------------------- /template/src/app.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoneDeal0/alright-react-app/HEAD/template/src/app.tsx -------------------------------------------------------------------------------- /template/src/assets/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoneDeal0/alright-react-app/HEAD/template/src/assets/.DS_Store -------------------------------------------------------------------------------- /template/src/assets/images/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoneDeal0/alright-react-app/HEAD/template/src/assets/images/.DS_Store -------------------------------------------------------------------------------- /template/src/assets/images/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoneDeal0/alright-react-app/HEAD/template/src/assets/images/favicon.png -------------------------------------------------------------------------------- /template/src/assets/svg/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoneDeal0/alright-react-app/HEAD/template/src/assets/svg/logo.svg -------------------------------------------------------------------------------- /template/src/components/error-boundary/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoneDeal0/alright-react-app/HEAD/template/src/components/error-boundary/index.tsx -------------------------------------------------------------------------------- /template/src/components/error-boundary/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoneDeal0/alright-react-app/HEAD/template/src/components/error-boundary/layout.tsx -------------------------------------------------------------------------------- /template/src/components/title/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoneDeal0/alright-react-app/HEAD/template/src/components/title/index.tsx -------------------------------------------------------------------------------- /template/src/components/title/stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoneDeal0/alright-react-app/HEAD/template/src/components/title/stories.tsx -------------------------------------------------------------------------------- /template/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoneDeal0/alright-react-app/HEAD/template/src/index.html -------------------------------------------------------------------------------- /template/src/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoneDeal0/alright-react-app/HEAD/template/src/index.tsx -------------------------------------------------------------------------------- /template/src/pages/home/home.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoneDeal0/alright-react-app/HEAD/template/src/pages/home/home.css -------------------------------------------------------------------------------- /template/src/pages/home/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoneDeal0/alright-react-app/HEAD/template/src/pages/home/index.tsx -------------------------------------------------------------------------------- /template/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoneDeal0/alright-react-app/HEAD/template/tsconfig.json -------------------------------------------------------------------------------- /template/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoneDeal0/alright-react-app/HEAD/template/webpack.config.js --------------------------------------------------------------------------------