A simple time series data labeling tool.
-
Install dependencies
npm install
-
Start development server
npm run dev
-
Open browser - Vite will automatically open http://localhost:3000.
| Command | Description |
|---|---|
npm run dev |
Start development server with HMR. |
npm run build |
Build for production. |
npm run preview |
Preview production build locally. |
npm run test |
Run tests once. |
npm run test:watch |
Run tests in watch mode. |
npm run test:ui |
Open Vitest UI for interactive testing. |
npm run test:coverage |
Generate test coverage report. |
npm run lint |
Check code with ESLint. |
npm run lint:fix |
Fix ESLint issues automatically. |
npm run format |
Format code with Prettier. |
npm run type-check |
Check TypeScript types. |
npm run ci |
Run all checks (CI pipeline). |
To create a production build with static assets:
npm run buildThis outputs the app to the dist/ directory with relative asset paths so it can be served from any URL prefix.
Verify the output locally with:
npm run preview- Any static server: copy the contents of
dist/to your server's public directory. - Vercel: the included
vercel.jsonrunsnpm run build, servesdist/, and falls back toindex.htmlfor SPA routes after static assets are served.