-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 2.44 KB
/
package.json
File metadata and controls
71 lines (71 loc) · 2.44 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
60
61
62
63
64
65
66
67
68
69
70
71
{
"name": "app",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"dev:turbo": "next dev --turbopack",
"dev:minimal": "set NEXT_LOG_LEVEL=error&& set NEXT_TELEMETRY_DISABLED=1&& npx next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"test": "vitest --run",
"test:watch": "vitest",
"db:migrate": "prisma db push",
"db:generate": "prisma generate",
"db:migrate-data": "tsx prisma/migrations/migrate-existing-data.ts",
"db:backup": "node -e \"const {MigrationService} = require('./src/lib/migrationService.ts'); MigrationService.createBackup().then(path => console.log('Backup created:', path)).catch(console.error)\"",
"db:validate": "node -e \"const {MigrationService} = require('./src/lib/migrationService.ts'); MigrationService.validateDataIntegrity().then(result => console.log('Data integrity:', result)).catch(console.error)\""
},
"dependencies": {
"@aws-sdk/client-s3": "^3.893.0",
"@elevenlabs/elevenlabs-js": "^2.33.0",
"@heroicons/react": "^2.2.0",
"@prisma/client": "6.12.0",
"@radix-ui/react-dialog": "^1.1.15",
"@radix-ui/react-dropdown-menu": "^2.1.16",
"@radix-ui/react-label": "^2.1.7",
"@radix-ui/react-slider": "^1.3.6",
"@radix-ui/react-slot": "^1.2.3",
"@radix-ui/react-tabs": "^1.1.13",
"@remotion/bundler": "^4.0.379",
"@remotion/player": "^4.0.379",
"@remotion/preload": "^4.0.379",
"@remotion/renderer": "^4.0.379",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"lucide-react": "^0.543.0",
"next": "15.4.4",
"react": "19.1.0",
"react-dom": "19.1.0",
"remotion": "^4.0.379",
"swr": "^2.3.4",
"tailwind-merge": "^3.3.1",
"throttle-debounce": "^5.0.2",
"uuid": "^13.0.0"
},
"devDependencies": {
"@eslint/eslintrc": "^3",
"@tailwindcss/postcss": "^4",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.0",
"@testing-library/user-event": "^14.6.1",
"@types/node": "^20",
"@types/react": "^19",
"@types/react-dom": "^19",
"@types/uuid": "^10.0.0",
"@vitejs/plugin-react": "^5.1.1",
"autoprefixer": "^10.4.21",
"eslint": "^9",
"eslint-config-next": "15.4.4",
"fast-check": "^4.3.0",
"jsdom": "^27.2.0",
"msw": "^2.12.3",
"postcss": "^8.5.6",
"prisma": "6.12.0",
"tailwindcss": "3.4.1",
"tsx": "^4.21.0",
"typescript": "^5",
"vitest": "^4.0.14"
}
}