$ npx degit https://github.com/m31odyWeb/svelte-kit-app-template <new-project-directory>
$ cd <new-project-directory>
$ npm install
npm run dev - to start project in develompent mode;
npm run build - to build project;
npm run preview - to preview a builded project;
fix:code - to fix JS and TS problems;
fix:styles - to fix CSS and SCSS problems;
format - to fix CSS and SCSS problems and format code with prettier;
tsconfig.json - for configuring typescript;
vite.config.js - for configuring vite;
svelte.config.js - for configuring svelte;
tailwind.config.cjs - for configuring TailwindCSS;
postcss.config.cjs - for configuring PostCSS;
.eslintrc.cjs, .eslintrc.stage.cjs - for configuring ESLint for development and stage;
.stylelintrc.json - for configuring StyleLint for development and stage;
.prettierrc - for configuring prettier for development and stage;
.editorconfig - for configuring Editor config;