-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
99 lines (99 loc) · 2.31 KB
/
package.json
File metadata and controls
99 lines (99 loc) · 2.31 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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
{
"name": "loadflux",
"version": "1.0.2",
"description": "Lightweight server monitoring dashboard for Node.js - embed Grafana like metrics in your existing server",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"homepage": "https://loadflux.kritebh.dev",
"repository": {
"type": "git",
"url": "https://github.com/kritebh/loadflux.git"
},
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.js"
}
},
"files": [
"dist",
"dist-ui"
],
"scripts": {
"build": "npm run build:server && npm run build:ui",
"build:server": "tsup",
"build:ui": "vite build",
"dev": "tsup --watch",
"dev:ui": "vite dev",
"test": "vitest run",
"test:watch": "vitest",
"prepublishOnly": "npm run build",
"docs:dev": "cd docs && npm start",
"docs:build": "cd docs && npm run build"
},
"keywords": [
"monitoring",
"dashboard",
"metrics",
"apm",
"performance",
"express",
"fastify",
"nestjs",
"server-monitoring",
"api-monitoring",
"nodejs",
"status",
"charts",
"observability",
"monitoring-page"
],
"author": "Kritebh Lagan Bibhakar",
"license": "MIT",
"dependencies": {
"bcryptjs": "^3.0.2",
"better-sqlite3": "^11.9.1",
"node-cron": "^3.0.3",
"on-headers": "^1.0.2"
},
"peerDependencies": {
"mongodb": ">=5"
},
"peerDependenciesMeta": {
"mongodb": {
"optional": true
}
},
"devDependencies": {
"@types/bcryptjs": "^2.4.6",
"@types/better-sqlite3": "^7.6.13",
"@types/express": "^5.0.6",
"@types/node": "^22.15.0",
"@types/node-cron": "^3.0.11",
"@types/on-headers": "^1.0.3",
"@types/react": "^19.1.2",
"@types/react-dom": "^19.1.2",
"@vitejs/plugin-react": "^4.4.1",
"autoprefixer": "^10.4.21",
"chart.js": "^4.5.0",
"dotenv": "^17.3.1",
"express": "^5.2.1",
"fastify": "^5.8.1",
"mongodb": "^7.1.0",
"postcss": "^8.5.3",
"react": "^19.1.0",
"react-chartjs-2": "^5.3.0",
"react-dom": "^19.1.0",
"react-router-dom": "^7.5.0",
"tailwindcss": "^3.4.17",
"tsup": "^8.4.0",
"typescript": "^5.8.3",
"vite": "^6.3.2",
"vitest": "^3.1.1"
},
"engines": {
"node": ">=18"
}
}