-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 1.95 KB
/
package.json
File metadata and controls
73 lines (73 loc) · 1.95 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
{
"name": "vitransfer",
"version": "1.0.2",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build --webpack",
"start": "next start",
"lint": "eslint .",
"postinstall": "prisma generate",
"worker": "tsx src/worker/index.ts"
},
"dependencies": {
"@aws-sdk/client-s3": "^3.1022.0",
"@aws-sdk/s3-request-presigner": "^3.1022.0",
"@prisma/client": "^6.19.0",
"@radix-ui/react-dialog": "^1.1.2",
"@radix-ui/react-label": "^2.1.8",
"@radix-ui/react-select": "^2.1.2",
"@radix-ui/react-slot": "^1.2.4",
"@radix-ui/react-switch": "^1.2.6",
"@simplewebauthn/browser": "^13.2.2",
"@simplewebauthn/server": "^13.2.2",
"@tus/file-store": "^2.0.0",
"@tus/server": "2.0.0",
"archiver": "^7.0.1",
"bcryptjs": "^3.0.3",
"bullmq": "^5.67.2",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"driver.js": "^1.4.0",
"file-type": "^22.0.0",
"html-to-text": "^9.0.5",
"ioredis": "^5.8.2",
"isomorphic-dompurify": "^3.7.1",
"jsonwebtoken": "^9.0.2",
"lucide-react": "^0.563.0",
"next": "^16.1.6",
"next-intl": "^4.9.0",
"nodemailer": "^8.0.4",
"react": "^19.2.1",
"react-dom": "^19.2.1",
"tailwind-merge": "^2.6.1",
"tailwindcss-animate": "^1.0.7",
"tsx": "^4.20.6",
"tus-js-client": "^4.2.3",
"web-push": "^3.6.7",
"zod": "^3.25.76"
},
"devDependencies": {
"@types/archiver": "^7.0.0",
"@types/html-to-text": "^9.0.4",
"@types/jsonwebtoken": "^9.0.10",
"@types/node": "^24.10.9",
"@types/nodemailer": "^6.4.17",
"@types/react": "^19",
"@types/react-dom": "^19",
"@types/web-push": "^3.6.4",
"eslint": "^9",
"eslint-config-next": "^16.1.6",
"postcss": "^8",
"prisma": "^6.19.0",
"tailwindcss": "^3.4.18",
"typescript": "^5"
},
"overrides": {
"esbuild": "0.27.0",
"glob": "11.1.0",
"tar": "7.5.8",
"diff": "8.0.3",
"effect": ">=3.20.0"
}
}