-
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.69 KB
/
package.json
File metadata and controls
98 lines (98 loc) · 2.69 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",
"check": "biome check .",
"check:fix": "biome check --write .",
"lint": "biome lint .",
"lint:fix": "biome lint --write .",
"format": "biome format --write .",
"format:check": "biome format --check .",
"ci": "biome ci ."
},
"dependencies": {
"@base-ui/react": "^1.4.1",
"@google-cloud/storage": "^7.19.0",
"@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.41.1",
"@tailwindcss/typography": "^0.5.19",
"@vercel/analytics": "^2.0.1",
"assemblyai": "^4.30.0",
"canvas-confetti": "^1.9.4",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"cors": "^2.8.6",
"device-detector-js": "^3.0.3",
"docx": "^9.6.1",
"dotenv": "^17.4.2",
"express": "^5.2.1",
"file-saver": "^2.0.5",
"firebase": "^12.12.1",
"framer-motion": "^12.38.0",
"jszip": "^3.10.1",
"lucide-react": "^1.11.0",
"marked": "^18.0.2",
"motion": "^12.38.0",
"next": "^16.2.4",
"next-themes": "^0.4.6",
"node-fetch": "^3.3.2",
"radix-ui": "^1.4.3",
"react": "^19.2.5",
"react-confetti": "^6.4.0",
"react-dom": "^19.2.5",
"react-dropzone": "^15.0.0",
"react-pdf": "^10.4.1",
"shadcn": "^4.5.0",
"shadcn-ui": "^0.9.5",
"sonner": "^2.0.7",
"tailwind-merge": "^3.5.0",
"tw-animate-css": "^1.4.0",
"uuid": "^14.0.0",
"zustand": "^5.0.12"
},
"devDependencies": {
"@biomejs/biome": "^2.4.13",
"@netlify/plugin-nextjs": "^5.15.9",
"@tailwindcss/postcss": "^4.2.4",
"@types/canvas-confetti": "^1.9.0",
"@types/cors": "^2.8.19",
"@types/express": "^5.0.6",
"@types/file-saver": "^2.0.7",
"@types/marked": "^6.0.0",
"@types/node": "^25.6.0",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"@types/uuid": "^11.0.0",
"autoprefixer": "^10.5.0",
"globals": "^17.5.0",
"postcss": "^8.5.12",
"prettier": "^3.8.3",
"prettier-plugin-tailwindcss": "^0.8.0",
"tailwindcss": "^4.2.4",
"tailwindcss-animate": "^1.0.7",
"tsx": "^4.21.0",
"typescript": "~6.0.3"
},
"overrides": {
"qs": ">=6.14.2",
"tar": ">=7.5.7",
"js-yaml": ">=4.1.1"
},
"trustedDependencies": [
"@firebase/util",
"core-js",
"protobufjs",
"unrs-resolver"
]
}