-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) Β· 1.15 KB
/
package.json
File metadata and controls
38 lines (38 loc) Β· 1.15 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
{
"name": "caorle-film-snap",
"version": "1.0.0",
"description": "Web app per il Caorle Film Festival che permette di caricare, moderare e visualizzare foto direttamente online. Backend con Express, frontend React + Vite, sistema di moderazione immagini e autenticazione admin.",
"license": "ISC",
"author": "Ludovico Cammarata",
"type": "commonjs",
"main": "server.js",
"scripts": {
"test": "npm start",
"start:backend": "node --watch src/backend/src/server.js",
"start:frontend": "npm --prefix src/frontend run dev",
"start": "concurrently \"npm run start:backend\" \"npm run start:frontend\""
},
"dependencies": {
"@google-cloud/vision": "^5.2.0",
"cors": "^2.8.5",
"daisyui": "^5.0.43",
"exif-js": "^2.3.0",
"express": "^5.1.0",
"i18next": "^25.2.1",
"i18next-fs-backend": "^2.6.0",
"multer": "^2.0.2",
"react-i18next": "^15.5.3",
"react-photo-album": "^3.1.0",
"react-router-dom": "^7.8.2",
"serve-index": "^1.9.1",
"sharp": "^0.34.2",
"sqlite3": "^5.1.7",
"uuid": "^11.1.0"
},
"devDependencies": {
"concurrently": "^9.1.2"
},
"overrides": {
"tar": "^7.5.7"
}
}