-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
98 lines (98 loc) · 2.78 KB
/
package.json
File metadata and controls
98 lines (98 loc) · 2.78 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
{
"name": "transcriptr",
"version": "0.1.0",
"type": "module",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "eslint .",
"format": "prettier --write .",
"format:check": "prettier --check .",
"preview": "vite preview",
"setup-firebase-cors": "node scripts/setup-firebase-cors.js"
},
"dependencies": {
"@base-ui/react": "^1.2.0",
"@google-cloud/storage": "^7.19.0",
"@microsoft/clarity": "^1.0.2",
"@radix-ui/react-dialog": "^1.1.15",
"@radix-ui/react-dropdown-menu": "^2.1.16",
"@radix-ui/react-label": "^2.1.8",
"@radix-ui/react-scroll-area": "^1.2.10",
"@radix-ui/react-select": "^2.2.6",
"@radix-ui/react-slot": "^1.2.4",
"@radix-ui/react-switch": "^1.2.6",
"@radix-ui/react-tabs": "^1.1.13",
"@tabler/icons-react": "^3.36.1",
"@tailwindcss/typography": "^0.5.19",
"assemblyai": "^4.23.0",
"clarity-js": "^0.8.54",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"cors": "^2.8.6",
"device-detector-js": "^3.0.3",
"docx": "^9.5.2",
"dotenv": "^17.3.1",
"express": "^5.2.1",
"file-saver": "^2.0.5",
"firebase": "^12.9.0",
"framer-motion": "^12.34.0",
"jspdf": "^4.1.0",
"jspdf-autotable": "^5.0.7",
"jszip": "^3.10.1",
"lucide-react": "^0.562.0",
"marked": "^17.0.2",
"motion": "^12.34.0",
"next": "^16.1.6",
"next-themes": "^0.4.6",
"node-fetch": "^3.3.2",
"pdfmake": "^0.3.4",
"radix-ui": "^1.4.3",
"react": "^19.2.4",
"react-confetti": "^6.4.0",
"react-dom": "^19.2.4",
"react-dropzone": "^14.4.1",
"react-ga4": "^2.1.0",
"react-pdf": "^10.3.0",
"shadcn": "^3.8.4",
"shadcn-ui": "^0.9.5",
"sonner": "^2.0.7",
"tailwind-merge": "^3.4.0",
"tw-animate-css": "^1.4.0",
"uuid": "^13.0.0"
},
"devDependencies": {
"@eslint/js": "^9.39.2",
"@netlify/plugin-nextjs": "^5.15.8",
"@tailwindcss/postcss": "^4.1.18",
"@types/cors": "^2.8.19",
"@types/express": "^5.0.6",
"@types/file-saver": "^2.0.7",
"@types/marked": "^6.0.0",
"@types/node": "^25.2.3",
"@types/pdfmake": "^0.2.13",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"@types/uuid": "^11.0.0",
"autoprefixer": "^10.4.24",
"eslint": "^9.39.2",
"eslint-config-next": "^16.1.6",
"eslint-plugin-react-hooks": "^7.0.1",
"eslint-plugin-react-refresh": "^0.4.26",
"globals": "^17.3.0",
"postcss": "^8.5.6",
"prettier": "^3.8.1",
"prettier-plugin-tailwindcss": "^0.7.2",
"tailwindcss": "^4.1.18",
"tailwindcss-animate": "^1.0.7",
"tsx": "^4.21.0",
"typescript": "~5.9.3",
"typescript-eslint": "^8.55.0"
},
"overrides": {
"qs": ">=6.14.2",
"tar": ">=7.5.7",
"js-yaml": ">=4.1.1"
}
}