-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.47 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.47 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
{
"name": "ping",
"version": "1.1.0",
"description": "A high-performance monitoring engine that orchestrates parallel network probes, manages service health summaries via atomic MongoDB updates, and implements a state-driven incident alerting system",
"private": true,
"engines": {
"node": ">=18.0.0"
},
"keywords": [
"api",
"tracker",
"analytics",
"dashboard",
"cli",
"uptime-monitor",
"health-check",
"scheduler",
"monitoring-service",
"incident-alerting",
"mongodb",
"typescript",
"express-api",
"latency-tracking",
"service-reliability",
"real-time-monitoring"
],
"homepage": "https://github.com/Forgata/ping#readme",
"bugs": {
"url": "https://github.com/Forgata/ping/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Forgata/ping.git"
},
"license": "MIT",
"author": "Forgata",
"type": "module",
"main": "./dist/server.js",
"scripts": {
"build": "tsc -b",
"start": "npm run build && node dist/server.js",
"build:watch": "tsc -b --watch",
"start:dev": "nodemon dist/server.js",
"dev": "concurrently \"npm run build:watch\" \"npm run start:dev\""
},
"devDependencies": {
"@types/express": "^5.0.6",
"@types/node": "^25.6.0",
"concurrently": "^9.2.1",
"nodemon": "^3.1.14",
"typescript": "^6.0.3"
},
"dependencies": {
"dotenv": "^17.4.2",
"express": "^5.2.1",
"mongoose": "^9.5.0",
"zod": "^4.3.6"
}
}