forked from DragosOnisei/FrameComment
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
108 lines (108 loc) · 2.93 KB
/
Copy pathpackage.json
File metadata and controls
108 lines (108 loc) · 2.93 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
{
"name": "framecomment",
"version": "6.7.0",
"description": "FrameComment — self-hosted video review and approval platform for filmmakers and video professionals.",
"author": {
"name": "Dragos Onisei",
"email": "dragosonisei@gmail.com",
"url": "https://github.com/DragosOnisei"
},
"license": "AGPL-3.0-only",
"homepage": "https://github.com/DragosOnisei/FrameComment",
"repository": {
"type": "git",
"url": "git+https://github.com/DragosOnisei/FrameComment.git"
},
"bugs": {
"url": "https://github.com/DragosOnisei/FrameComment/issues"
},
"keywords": [
"video",
"review",
"approval",
"filmmakers",
"self-hosted",
"framecomment",
"truenas",
"docker"
],
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build --webpack",
"start": "next start",
"lint": "eslint .",
"postinstall": "prisma generate",
"worker:dev": "tsx watch src/worker/dev.ts",
"worker": "tsx src/worker/index.ts",
"founder:create": "tsx scripts/create-founder.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.76.6",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"driver.js": "^1.4.0",
"file-type": "^22.0.0",
"hls.js": "^1.5.15",
"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": "^9.0.1",
"pdfkit": "^0.15.2",
"react": "^19.2.1",
"react-dom": "^19.2.1",
"stripe": "^22.3.0",
"tailwind-merge": "^2.6.1",
"tailwindcss-animate": "^1.0.7",
"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/pdfkit": "^0.13.9",
"@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",
"tsx": "^4.22.4",
"typescript": "^5"
},
"overrides": {
"esbuild": "0.28.1",
"glob": "11.1.0",
"tar": "7.5.8",
"diff": "8.0.3",
"effect": ">=3.20.0",
"undici": "^7.28.0"
},
"optionalDependencies": {
"@next/swc-darwin-arm64": "^16.2.9"
}
}