-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
110 lines (110 loc) · 3.26 KB
/
package.json
File metadata and controls
110 lines (110 loc) · 3.26 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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
{
"name": "audio-marker",
"version": "0.9.4",
"private": true,
"type": "module",
"scripts": {
"admin:create": "tsx scripts/create-admin.ts",
"build": "next build",
"check": "biome lint . && biome format --write . && tsc --noEmit",
"db:generate": "prisma migrate dev",
"db:migrate": "prisma migrate deploy",
"db:push": "prisma db push",
"db:seed": "tsx scripts/seed.ts",
"db:studio": "prisma studio",
"dev": "next dev --turbo",
"format:check": "biome format .",
"format:write": "biome format --write .",
"postinstall": "prisma generate",
"lint": "biome lint .",
"lint:fix": "biome lint --write .",
"preview": "next build && next start",
"start": "next start",
"test": "vitest",
"test:ui": "vitest --ui",
"test:coverage": "vitest --coverage",
"test:run": "vitest run",
"test:ci": "pnpm typecheck && pnpm lint && pnpm test:run",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"@auth/prisma-adapter": "^2.7.2",
"@hello-pangea/dnd": "^18.0.1",
"@heroui/avatar": "^2.2.21",
"@heroui/button": "^2.2.26",
"@heroui/card": "^2.2.28",
"@heroui/chip": "^2.2.25",
"@heroui/dropdown": "^2.3.26",
"@heroui/input": "^2.4.33",
"@heroui/link": "^2.2.26",
"@heroui/modal": "^2.2.29",
"@heroui/navbar": "^2.2.24",
"@heroui/popover": "^2.3.32",
"@heroui/react": "^2.8.4",
"@heroui/select": "^2.4.33",
"@heroui/spinner": "^2.2.29",
"@heroui/switch": "^2.2.27",
"@heroui/table": "^2.2.32",
"@heroui/tabs": "^2.2.29",
"@heroui/theme": "^2.4.26",
"@heroui/use-disclosure": "^2.2.19",
"@prisma/client": "^6.5.0",
"@sentry/nextjs": "^10.38.0",
"@t3-oss/env-nextjs": "^0.12.0",
"@tanstack/react-query": "^5.69.0",
"@tiptap/extension-link": "^3.9.0",
"@tiptap/extension-text-align": "^3.9.0",
"@tiptap/extension-underline": "^3.9.0",
"@tiptap/react": "^3.9.0",
"@tiptap/starter-kit": "^3.9.0",
"@trpc/client": "^11.0.0",
"@trpc/react-query": "^11.0.0",
"@trpc/server": "^11.0.0",
"@types/nodemailer": "^7.0.1",
"framer-motion": "^12.23.18",
"lucide-react": "^0.544.0",
"next": "^15.5.11",
"next-auth": "5.0.0-beta.30",
"next-intl": "^4.3.12",
"nodemailer": "^7.0.11",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"recharts": "^3.7.0",
"server-only": "^0.0.1",
"superjson": "^2.2.1",
"tsx": "^4.20.6",
"uuid": "^13.0.0",
"wavesurfer.js": "^7.10.2",
"zod": "^3.25.76"
},
"devDependencies": {
"@biomejs/biome": "^2.4.11",
"@tailwindcss/postcss": "^4.2.2",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@testing-library/user-event": "^14.6.1",
"@types/node": "20.19.17",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react": "^5.2.0",
"globals": "^17.4.0",
"happy-dom": "^20.8.9",
"jsdom": "^27.4.0",
"postcss": "^8.5.8",
"prisma": "^6.19.2",
"tailwindcss": "^4.2.2",
"typescript": "^5.9.3",
"vite": "^8.0.5",
"vitest": "^4.1.4"
},
"ct3aMetadata": {
"initVersion": "7.39.3"
},
"packageManager": "pnpm@9.15.4",
"pnpm": {
"overrides": {
"effect@<3.20.0": ">=3.20.0",
"nodemailer@<=8.0.4": ">=8.0.5"
}
}
}