-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 874 Bytes
/
Copy pathpackage.json
File metadata and controls
31 lines (31 loc) · 874 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
{
"name": "openvideoui",
"private": true,
"workspaces": [
"apps/*",
"packages/*"
],
"scripts": {
"dev:web": "npm run dev --workspace @openvideoui/web",
"dev:worker": "npm run dev --workspace @openvideoui/worker",
"sync:models": "npm run sync:models --workspace @openvideoui/worker",
"build:web": "npm run build --workspace @openvideoui/web",
"db:generate": "drizzle-kit generate",
"db:migrate": "drizzle-kit migrate",
"db:seed": "tsx packages/database/src/seed.ts",
"doctor": "node scripts/doctor.mjs",
"test": "vitest run",
"test:watch": "vitest",
"typecheck": "npm run typecheck --workspaces --if-present"
},
"devDependencies": {
"drizzle-kit": "^0.31.4",
"typescript": "^5.8.3",
"vitest": "^4.1.5"
},
"overrides": {
"@esbuild-kit/core-utils": {
"esbuild": "^0.25.12"
}
}
}