-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.24 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.24 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
{
"name": "cdn-server",
"version": "1.0.0",
"description": "CDN server with Fastify",
"main": "server.js",
"type": "module",
"scripts": {
"start": "node server.js",
"dev": "node --watch server.js",
"build": "cd ui && vite build",
"preview": "cd ui && vite preview",
"reset-media": "node scripts/reset-media.js",
"migrate-to-r2": "node scripts/migrate-to-r2.js"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@aws-sdk/client-s3": "^3.998.0",
"@fastify/cookie": "^11.0.2",
"@fastify/multipart": "^9.3.0",
"@fastify/oauth2": "^8.1.2",
"@fastify/secure-session": "^8.3.0",
"@fastify/static": "^9.0.0",
"@uppy/core": "^5.2.0",
"@uppy/dashboard": "^5.1.0",
"@uppy/react": "^5.1.1",
"@uppy/xhr-upload": "^5.1.1",
"@vitejs/plugin-react": "^5.1.2",
"bulma": "^1.0.4",
"dotenv": "^17.2.3",
"fastify": "^5.6.2",
"fluent-ffmpeg": "^2.1.3",
"mysql2": "^3.16.0",
"nanoid": "^5.1.6",
"node": "^24.12.0",
"react": "^19.2.3",
"react-dom": "^19.2.3",
"react-router-dom": "^7.12.0",
"sharp": "^0.32.0",
"vite": "^7.3.0"
},
"overrides": {
"sodium-native": "4.2.0"
},
"devDependencies": {
"png-to-ico": "^3.0.1"
}
}