-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 2.01 KB
/
package.json
File metadata and controls
76 lines (76 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
69
70
71
72
73
74
75
76
{
"name": "uptime",
"version": "1.0.0",
"description": "Self-hosted, open-source uptime monitor in Node.js with HTTP/HTTPS checks, body and JSON-path assertions, passive heartbeat URLs (Healthchecks.io style), incident tracking, response-time graphs, multi-channel alerts (Discord, email, webhook), Cloudflare-aware probing, dark-mode dashboard, SQLite or MySQL.",
"main": "src/server.js",
"type": "commonjs",
"license": "MIT",
"author": "codewizdevs (https://github.com/codewizdevs)",
"homepage": "https://github.com/codewizdevs/uptime#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/codewizdevs/uptime.git"
},
"bugs": {
"url": "https://github.com/codewizdevs/uptime/issues"
},
"keywords": [
"uptime",
"uptime-monitor",
"uptime-monitoring",
"monitoring",
"self-hosted",
"open-source",
"status-page",
"healthcheck",
"heartbeat",
"cron-monitoring",
"dead-mans-switch",
"http-monitoring",
"https-monitoring",
"website-monitoring",
"incident-tracking",
"alerting",
"discord-webhook",
"email-alerts",
"webhook",
"cloudflare",
"nodejs",
"express",
"sqlite",
"mysql",
"dashboard",
"tabler"
],
"engines": {
"node": ">=20"
},
"scripts": {
"start": "node src/server.js",
"dev": "node --watch src/server.js",
"pm2:start": "pm2 start ecosystem.config.js",
"pm2:stop": "pm2 stop uptime",
"pm2:logs": "pm2 logs uptime"
},
"dependencies": {
"argon2": "^0.44.0",
"better-sqlite3": "^12.9.0",
"connect-flash": "^0.1.1",
"cookie-parser": "^1.4.7",
"cron-parser": "^5.5.0",
"dotenv": "^16.4.5",
"ejs": "^3.1.10",
"express": "^4.21.2",
"express-ejs-layouts": "^2.5.1",
"express-session": "^1.18.1",
"multer": "^2.1.1",
"mysql2": "^3.11.5",
"nodemailer": "^8.0.7",
"pino": "^9.5.0",
"pino-http": "^10.3.0",
"pino-pretty": "^11.3.0",
"pino-roll": "^2.0.0",
"qrcode": "^1.5.4",
"undici": "^6.21.0"
}
}