-
Notifications
You must be signed in to change notification settings - Fork 75
Expand file tree
/
Copy pathpackage.json
More file actions
84 lines (84 loc) · 3.3 KB
/
package.json
File metadata and controls
84 lines (84 loc) · 3.3 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
72
73
74
75
76
77
78
79
80
81
82
83
84
{
"name": "app.yumcut.com",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev --turbopack",
"build": "next build --turbopack",
"start": "next start",
"types:check": "tsc --noEmit",
"types:check:common": "tsc --noEmit -p tsconfig.common.json",
"prisma:generate": "prisma generate",
"prisma:dev": "prisma migrate dev",
"prisma:migrate:deploy": "prisma migrate deploy",
"prisma:studio": "prisma studio",
"project:status": "tsx scripts/update-project-status.ts",
"project:download": "tsx scripts/project-download.ts",
"telegram:webhook:set": "tsx scripts/set-telegram-webhook.ts",
"telegram:poll": "tsx scripts/telegram-polling-worker.ts",
"emails:planned:send": "tsx scripts/send-planned-emails.ts",
"tokens:adjust": "tsx scripts/manage-tokens.ts",
"daemon": "tsx scripts/daemon/index.ts",
"publish-daemon": "tsx scripts/publish-daemon/index.ts",
"daemon:cleanup": "tsx scripts/daemon/cleanup-stale-jobs.ts",
"admin:set": "tsx scripts/set-admin.ts",
"templates:fill": "tsx scripts/templates/fill.ts",
"test": "vitest run",
"test:fast": "vitest run --exclude \"tests/daemon/**\" --exclude \"tests/daemon-and-api/**\"",
"hooks:install": "git config core.hooksPath scripts/git-hooks",
"postinstall": "npm run hooks:install && prisma generate",
"upload-keys:generate": "tsx scripts/utils/generate-upload-keys.ts",
"tools:convert-preview": "tsx scripts/convert-preview.ts",
"projects:dummy": "tsx scripts/seed-dummy-projects.ts",
"tests:prepare": "npm ci --prefix tests/daemon/dummy-scripts/DAEMON_SCRIPT_WORKSPACE && npm ci --prefix tests/daemon/dummy-scripts/DAEMON_SCRIPT_WORKSPACE_V2 && npm ci --prefix tests/daemon/dummy-scripts/DAEMON_SCRIPT_CAPTION",
"voices:download-previews": "tsx scripts/utils/download-voice-previews.ts",
"db:check": "tsx scripts/check-db-connection.ts"
},
"dependencies": {
"@apple/app-store-server-library": "^2.0.0",
"@next-auth/prisma-adapter": "^1.0.7",
"@prisma/client": "6.16.1",
"@radix-ui/react-checkbox": "^1.3.3",
"@radix-ui/react-dialog": "^1.1.15",
"@radix-ui/react-label": "^2.1.8",
"@radix-ui/react-popover": "^1.1.15",
"@radix-ui/react-radio-group": "^1.3.8",
"@radix-ui/react-scroll-area": "^1.2.10",
"@radix-ui/react-select": "^2.2.6",
"@radix-ui/react-tabs": "^1.1.13",
"@radix-ui/react-tooltip": "^1.2.8",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"dotenv": "^17.2.3",
"google-auth-library": "^10.5.0",
"jose": "^6.1.3",
"jsonwebtoken": "^9.0.3",
"lucide-react": "^0.562.0",
"next": "^16.1.0",
"next-auth": "^4.24.13",
"next-themes": "^0.4.6",
"react": "^19.2.3",
"react-dom": "^19.2.3",
"resend": "^6.9.4",
"sonner": "^2.0.7",
"stripe": "^20.4.1",
"tailwind-merge": "^3.4.0",
"tailwindcss-animate": "^1.0.7",
"zod": "^4.2.1"
},
"devDependencies": {
"@tailwindcss/postcss": "^4.1.17",
"@types/jsonwebtoken": "^9.0.10",
"@types/node": "^24.10.1",
"@types/react": "^19.2.7",
"@types/react-dom": "^19.2.3",
"eslint": "^9.39.1",
"eslint-config-next": "^16.0.7",
"prisma": "6.16.2",
"tailwindcss": "^4.1.18",
"tsx": "^4.21.0",
"tw-animate-css": "^1.4.0",
"typescript": "^5.9.3",
"vitest": "^2.0.0"
}
}