fiddy/package.json
Nico f8e426542d
Some checks failed
Build & Deploy Fiddy (Dokploy) / build (push) Has been cancelled
Build & Deploy Fiddy (Dokploy) / deploy (push) Has been cancelled
feat: implement schedules pivot, scheduler service, and dokploy deploy flow
2026-02-15 17:10:58 -08:00

23 lines
806 B
JSON

{
"name": "fiddy",
"private": true,
"workspaces": [
"apps/*",
"packages/*"
],
"scripts": {
"dev": "npm --workspace apps/web run dev",
"dev:web": "npm --workspace apps/web run dev",
"build": "npm --workspace apps/web run build",
"start": "npm --workspace apps/web run start",
"start:scheduler": "npm --workspace apps/scheduler run start",
"lint": "npm --workspace apps/web run lint",
"test": "npm --workspace apps/web run test",
"test:ui": "npm --workspace apps/web run test:ui",
"db:migrate": "npm --workspace packages/db run migrate",
"db:migrate:all": "npm --workspace packages/db run migrate:all",
"db:migrate:status": "npm --workspace packages/db run status",
"db:migrate:status:all": "npm --workspace packages/db run status:all"
}
}