fiddy/package.json
2026-02-11 23:45:15 -08:00

19 lines
528 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",
"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"
}
}