An official starter kit for React-TypeScript applications created with @shaizei/cli.
Here's a brief summary of the commands that you can run inside the applications
created with @shaizei/cli.
Note that these commands are the ones that are available by default, you can extend the applications in whatever way you want and add many more scripts of your choice.
In order to start the development server, run the following command:
shaizei developIn order to generate an optimized production bundle of your application, run the following command:
shaizei buildIn order to run linting on all the files in src/ directory, run the following
command:
shaizei lintIn order to fix common linting errors, run the following command:
shaizei lint-fixIn order to analyze the production bundles, run the following command:
shaizei analyzeIn order to serve the production bundle locally, run the following command:
shaizei serveIn order to run Prettier throughout the codebase and to find the potential violations of Prettier rules, run the following command:
shaizei prettierIn order to fix Prettier formatting issues from command-line, run the following command:
shaizei prettier-fixESLint can also do the part of job that Prettier is doing, in order to find if there are any issues among ESLint & Prettier integration, run the following command:
shaizei eslint-prettier-integrationIn order to run type-checking on whole TypeScript codebase, just run the following command:
shaizei type-checkshaizei is a toolkit for building & maintaining futuristic React apps.
Read more about it by checking the official repository.