-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.56 KB
/
Copy pathpackage.json
File metadata and controls
60 lines (60 loc) · 1.56 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
{
"name": "logcortex",
"version": "1.0.0",
"description": "MongoDB log analyzer (web UI + CLI) with slow-query detection, COLLSCAN / index recommendations, security auditing, and local-by-default data handling. Emits structured JSON for automation workflows.",
"private": true,
"type": "module",
"license": "MIT",
"author": "LogCortex contributors",
"keywords": [
"mongodb",
"log-analyzer",
"slow-query",
"performance",
"react",
"vite",
"tailwindcss",
"recharts"
],
"engines": {
"node": ">=18.0.0"
},
"bin": {
"logcortex": "./bin/logcortex.js"
},
"scripts": {
"dev": "vite",
"build": "vite build",
"preview": "vite preview",
"lint": "eslint .",
"test": "vitest run --passWithNoTests",
"test:watch": "vitest",
"screenshot:ask-log": "node scripts/capture-ask-log-screenshot.mjs",
"cli": "node bin/logcortex.js"
},
"dependencies": {
"fflate": "^0.8.2",
"lucide-react": "^0.441.0",
"pako": "^2.1.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"recharts": "^2.12.7"
},
"devDependencies": {
"@eslint/js": "^9.39.0",
"@types/react": "^18.3.5",
"@types/react-dom": "^18.3.0",
"@vitejs/plugin-react": "^4.7.0",
"autoprefixer": "^10.4.20",
"eslint": "^9.39.0",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^7.1.1",
"eslint-plugin-react-refresh": "^0.5.2",
"globals": "^17.6.0",
"playwright": "^1.51.1",
"postcss": "^8.4.45",
"tailwindcss": "^3.4.11",
"vite": "^6.4.2",
"vitest": "^3.2.4"
}
}