-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
89 lines (89 loc) · 2.57 KB
/
package.json
File metadata and controls
89 lines (89 loc) · 2.57 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
{
"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": {
"@google-cloud/storage": "^7.16.0",
"@microsoft/clarity": "1",
"@radix-ui/react-dialog": "^1.1.14",
"@radix-ui/react-dropdown-menu": "^2.1.15",
"@radix-ui/react-label": "^2.1.7",
"@radix-ui/react-scroll-area": "^1.2.9",
"@radix-ui/react-select": "^2.2.5",
"@radix-ui/react-slot": "^1.2.3",
"@radix-ui/react-tabs": "^1.1.12",
"@tabler/icons-react": "^3.34.0",
"@tailwindcss/typography": "^0.5.16",
"clarity-js": "^0.8.15",
"class-variance-authority": "^0.7.1",
"cloudconvert": "^3.0.0",
"clsx": "^2.1.1",
"cors": "^2.8.5",
"device-detector-js": "^3.0.3",
"docx": "^9.5.1",
"dotenv": "^16.5.0",
"express": "^5.2.0",
"file-saver": "^2.0.5",
"firebase": "^11.9.1",
"framer-motion": "^12.19.1",
"jspdf": "^3.0.1",
"jspdf-autotable": "^5.0.2",
"jszip": "^3.10.1",
"lucide-react": "^0.523.0",
"marked": "^15.0.12",
"motion": "^12.19.1",
"next": "^16.0.1",
"next-themes": "^0.4.6",
"node-fetch": "^3.3.2",
"pdfmake": "^0.2.20",
"react": "^19.1.0",
"react-confetti": "^6.4.0",
"react-dom": "^19.1.0",
"react-dropzone": "^14.3.8",
"react-ga4": "^2.1.0",
"react-pdf": "^10.0.1",
"replicate": "^1.0.1",
"shadcn-ui": "^0.9.5",
"sonner": "^2.0.5",
"tailwind-merge": "^3.3.1",
"uuid": "^11.1.0"
},
"devDependencies": {
"@eslint/js": "^9.29.0",
"@netlify/plugin-nextjs": "^5.11.6",
"@tailwindcss/postcss": "^4.1.11",
"@types/cors": "^2.8.19",
"@types/express": "^5.0.3",
"@types/file-saver": "^2.0.7",
"@types/marked": "^6.0.0",
"@types/node": "^24.0.4",
"@types/pdfmake": "^0.2.11",
"@types/react": "^19.1.8",
"@types/react-dom": "^19.1.6",
"@types/uuid": "^10.0.0",
"autoprefixer": "^10.4.21",
"eslint": "^9.29.0",
"eslint-config-next": "^15.4.2",
"eslint-plugin-react-hooks": "^5.2.0",
"eslint-plugin-react-refresh": "^0.4.20",
"globals": "^16.2.0",
"postcss": "^8.5.6",
"prettier": "^3.6.1",
"prettier-plugin-tailwindcss": "^0.6.14",
"tailwindcss": "^4.1.11",
"tailwindcss-animate": "^1.0.7",
"tsx": "^4.20.3",
"typescript": "~5.8.3",
"typescript-eslint": "^8.35.0"
}
}