kimono frontend. site. (olacak.)
src/
: The actual source code of the projectlib/
: Library filesroutes/
: The routes.../+page.svelte
: The Svelte component that renders the page
stories/
: Storybook stories (UI workshop)**/*.spec.ts
: Vitest test files (unit tests)
static/
: Static filese2e/
: Playwright test files (browser tests)
- playwright: Browser testing
- SvelteKit: Framework for building web apps using svelte
- Svelte: UI framework
- ESLint: JavaScript linter (error checker)
- mdsvex: For rendering markdown
- prettier: For beautifying files
- TypeScript: Typing for JavaScript
- Vite: Fast HTTP server
- Vitest: Vite testing framework
- Storybook: UI component workshop
Install dependencies with npm install
,
start a development server:
npm run dev
# or start the server and open the app in a new browser tab
npm run dev -- --open
npm run format # Run automatic formatter
npm run lint # Run linter
npm run test # Run all tests
npm run test:unit # Run unit tests
npm run test:e2e # Run end-to-end tests
npm run storybook # Open storybook
To create a production version of your app:
npm run build
You can preview the production build with npm run preview
.