-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 2.01 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 2.01 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
{
"name": "BackupHub",
"version": "1.0.0",
"description": "Automated backup management system with scheduling, agent coordination, and job monitoring",
"main": "server.js",
"scripts": {
"start": "node server.js",
"test": "jest",
"test:verbose": "jest --verbose",
"test:detail": "jest --verbose --no-coverage",
"test:debug": "jest --verbose --bail --detectOpenHandles",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"dev": "nodemon server.js"
},
"keywords": [
"backup",
"scheduling",
"automation",
"agent"
],
"author": "BackupHub Contributors",
"license": "MIT",
"dependencies": {
"@mdi/js": "^7.4.47",
"archiver": "^7.0.1",
"axios": "^1.14.0",
"bcrypt": "^6.0.0",
"chart.js": "^4.5.1",
"cookie-parser": "^1.4.6",
"ejs": "^5.0.1",
"express": "^5.2.1",
"express-session": "^1.19.0",
"form-data": "^4.0.5",
"got": "^15.0.0",
"jsonwebtoken": "^9.0.3",
"jws": "^4.0.1",
"level": "^10.0.0",
"log4js": "^6.9.1",
"lusca": "^1.7.0",
"material-design-icons-iconfont": "^6.7.0",
"material-icons": "^1.13.14",
"materialize-css": "^1.0.0",
"moment-timezone": "^0.6.0",
"monaco-editor": "^0.55.1",
"mongoose": "^9.4.1",
"mqtt": "^5.15.1",
"multer": "^2.1.1",
"nanoid": "^5.1.6",
"node-schedule": "^2.1.1",
"nodemailer": "^8.0.5",
"passport": "^0.7.0",
"passport-local": "^1.0.0",
"passport-local-mongoose": "^9.0.0",
"qs": "^6.15.0",
"sanitize-html": "^2.17.0",
"socket.io": "^4.7.5",
"text-encoding-utf-8": "^1.0.2",
"unzipper": "^0.12.3",
"ws": "^8.18.3"
},
"devDependencies": {
"ejs-lint": "^2.0.0",
"jest": "^30.3.0",
"nodemon": "^3.1.11",
"reconnecting-websocket": "^4.4.0"
}
}