-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.74 KB
/
Copy pathpackage.json
File metadata and controls
56 lines (56 loc) · 1.74 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
{
"name": "ravage",
"version": "1.0.0",
"description": "Aqui se desarrolla la app de transferencia de archivos entre ordenadores usando SFTP. Privado y dedicado a usuarios de la FIC que lo quieran usar o participar en su desarrollo.",
"homepage": "https://github.com/MateoGonzalezLourido/Ravage#readme",
"bugs": {
"url": "https://github.com/MateoGonzalezLourido/Ravage/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/MateoGonzalezLourido/Ravage.git"
},
"license": "ISC",
"author": "mateo gonzalez lourido",
"type": "module",
"main": "main.js",
"scripts": {
"start": "npm run build-preload && electron .",
"build-preload": "esbuild preload.cjs --bundle --platform=node --external:electron --outfile=preload.bundle.cjs",
"debug": "electron --trace-warnings --trace-deprecation --inspect=5858 .",
"start-railway": "node backend/servidores/serverRailway.js",
"test": "vitest run",
"postinstall": "electron-rebuild"
},
"dependencies": {
"@getbrevo/brevo": "^5.0.3",
"bcrypt": "^6.0.0",
"better-sqlite3": "^12.9.0",
"brevo": "^1.0.0",
"dompurify": "^3.4.0",
"dotenv": "^17.4.0",
"express": "^5.2.1",
"express-rate-limit": "^8.3.2",
"jsonwebtoken": "^9.0.3",
"mongodb": "^7.1.1",
"mongoose": "^9.4.1",
"node-machine-id": "^1.1.12",
"pino": "^10.3.1",
"pino-pretty": "^13.1.3",
"socket.io": "^4.8.3",
"socket.io-client": "^4.8.3",
"systeminformation": "^5.31.5",
"validator": "^13.15.35"
},
"devDependencies": {
"@electron/rebuild": "^4.0.4",
"electron": "^41.1.1",
"esbuild": "^0.27.7",
"standard": "^17.1.2",
"vitest": "^4.1.2"
},
"browserslist": [
"Chrome >= 120",
"Electron >= 40"
]
}