-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 2.25 KB
/
Copy pathpackage.json
File metadata and controls
59 lines (59 loc) · 2.25 KB
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
{
"name": "open-studio",
"version": "0.1.0",
"private": true,
"workspaces": [
"apps/*"
],
"scripts": {
"dev": "npm run dev:app",
"dev:app": "npm --workspace @openstudio/web run dev",
"dev:desktop": "npm --workspace @openstudio/desktop run dev",
"dev:api": "uvicorn main:app --app-dir apps/openstudio-shorts-service --reload --host 0.0.0.0 --port 8000",
"dev:worker": "python apps/openstudio-shorts-service/worker.py",
"dev:full": "concurrently \"npm run dev:app\" \"npm run dev:api\" \"npm run dev:worker\"",
"dev:landing": "npm --workspace @openstudio/web run dev:landing",
"build": "npm --workspace @openstudio/web run build",
"build:desktop": "npm --workspace @openstudio/desktop run build",
"desktop:dist": "npm --workspace @openstudio/desktop run dist",
"desktop:dist:windows": "npm --workspace @openstudio/desktop run dist:windows",
"desktop:dist:macos": "npm --workspace @openstudio/desktop run dist:macos",
"desktop:dist:linux": "npm --workspace @openstudio/desktop run dist:linux",
"desktop:pack": "npm --workspace @openstudio/desktop run pack",
"desktop:pack:windows": "npm --workspace @openstudio/desktop run pack:windows",
"desktop:pack:macos": "npm --workspace @openstudio/desktop run pack:macos",
"desktop:pack:linux": "npm --workspace @openstudio/desktop run pack:linux",
"start": "npm --workspace @openstudio/web run start",
"lint": "npm --workspace @openstudio/web run lint",
"e2e": "playwright test",
"e2e:ui": "playwright test --ui"
},
"dependencies": {
"@ffmpeg/core": "^0.12.10",
"@ffmpeg/ffmpeg": "^0.12.15",
"@ffmpeg/util": "^0.12.2",
"@supabase/supabase-js": "^2.50.0",
"clsx": "^2.1.1",
"framer-motion": "^12.38.0",
"idb-keyval": "^6.2.2",
"lucide-react": "^1.14.0",
"next": "16.2.4",
"react": "19.2.4",
"react-dom": "19.2.4",
"tailwind-merge": "^3.5.0",
"zustand": "^5.0.13"
},
"devDependencies": {
"@playwright/test": "^1.59.1",
"@tailwindcss/postcss": "^4",
"@types/node": "^20",
"@types/react": "^19",
"@types/react-dom": "^19",
"concurrently": "^9.2.1",
"cross-env": "^10.1.0",
"eslint": "^9",
"eslint-config-next": "16.2.4",
"tailwindcss": "^4",
"typescript": "^5"
}
}