Simple example frontend
- Svelte 58.9%
- TypeScript 34.7%
- Shell 5%
- JavaScript 0.6%
- Dockerfile 0.3%
- Other 0.5%
| .vscode | ||
| .woodpecker | ||
| cypress | ||
| src | ||
| static | ||
| tests | ||
| .gitignore | ||
| .npmrc | ||
| .prettierignore | ||
| .prettierrc | ||
| AGENTS.md | ||
| bootstrap.sh | ||
| cypress.config.ts | ||
| Dockerfile | ||
| eslint.config.js | ||
| LICENSE | ||
| opencode.json | ||
| package.json | ||
| playwright.config.ts | ||
| pnpm-lock.yaml | ||
| postcss.config.cjs | ||
| README.md | ||
| svelte.config.js | ||
| tailwind.config.ts | ||
| tsconfig.json | ||
| vite.config.ts | ||
| vitest.config.ts | ||
fast-ecommerce-template
Template for fast-ecommerce project
create-svelte
Everything you need to build a Svelte project, powered by create-svelte.
Get Start
# install dependencies
pnpm install
Developing
Start a development server:
pnpm dev
Building
To create a production version of your app:
pnpm run build
You can preview the production build with pnpm run preview.
Testing
# Unit tests
pnpm test:unit
# E2E tests (Cypress)
pnpm test:integration
# Coverage
pnpm test:coverage
Code Quality
# Lint check
pnpm lint
# Format code
pnpm format
# Type check
pnpm check