-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathpackage.json
More file actions
84 lines (84 loc) · 3.44 KB
/
Copy pathpackage.json
File metadata and controls
84 lines (84 loc) · 3.44 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
{
"name": "api-monitor",
"version": "2.0.4",
"description": "Multi-api monitoring dashboard",
"scripts": {
"dev": "concurrently \"npm run backend-go:dev\" \"vite\" --names \"backend,frontend\" --prefix-colors \"blue,green\"",
"dev:simple": "vite",
"build": "vite build",
"preview": "vite preview",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"format": "prettier --write \"src/**/*.{js,jsx,css,html}\" \"*.config.js\"",
"format:check": "prettier --check \"src/**/*.{js,jsx,css,html}\"",
"test": "vitest run --passWithNoTests",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"version:patch": "npm version patch --no-git-tag-version --ignore-scripts",
"version:minor": "npm version minor --no-git-tag-version --ignore-scripts",
"version:major": "npm version major --no-git-tag-version --ignore-scripts",
"backend-go:dev": "cd backend-go && go run ./cmd/api-monitor",
"backend-go:start": "cd backend-go && ./api-monitor.exe",
"backend-go:test": "cd backend-go && go test ./...",
"backend-go:build": "cd backend-go && go build -o api-monitor.exe ./cmd/api-monitor",
"agent:build:windows": "cargo build --manifest-path agent-rust/Cargo.toml --release && npm run agent:publish:windows",
"agent:publish:windows": "powershell -NoProfile -ExecutionPolicy Bypass -File scripts/Publish-WindowsAgent.ps1",
"db:audit": "cd backend-go && go run ./cmd/schema-audit",
"ui:governance": "node tools/ui-governance-check.mjs",
"governance:check": "node tools/three-side-governance-check.mjs",
"backend-go:smoke": "node tools/backend-go-smoke.mjs",
"backend:perf-baseline": "node tools/backend-performance-baseline.mjs",
"audit:fast": "npm run governance:check && npm run ui:governance && npm run lint && npm test",
"audit:full": "npm run audit:fast && npm run backend-go:test && node tools/backend-route-inventory.mjs && npm run backend-go:smoke",
"clean:check": "node tools/workspace-cleanup.mjs --check",
"clean:workspace": "node tools/workspace-cleanup.mjs --apply"
},
"dependencies": {
"@cloudflare/kumo": "2.8.0",
"@codemirror/lang-markdown": "^6.5.1",
"@codemirror/language": "^6.12.4",
"@codemirror/language-data": "^6.5.2",
"@codemirror/view": "^6.43.6",
"@lezer/markdown": "^1.7.2",
"@milkdown/crepe": "^7.21.3",
"@phosphor-icons/react": "^2.1.10",
"@tsparticles/engine": "^4.1.3",
"@tsparticles/slim": "^4.1.3",
"@uiw/react-codemirror": "^4.25.11",
"axios": "^1.13.2",
"country-flag-icons": "^1.6.17",
"dompurify": "^3.4.12",
"echarts": "^6.1.0",
"flag-icons": "^7.5.0",
"jsqr": "^1.4.0",
"katex": "^0.18.1",
"marked": "^18.0.7",
"qrcode": "^1.5.4",
"react": "^19.2.7",
"react-dom": "^19.2.7",
"simple-icons-font": "^16.4.0",
"socket.io-client": "^4.8.3",
"topojson-client": "^3.1.0",
"world-atlas": "^2.0.2",
"zustand": "^5.0.14"
},
"devDependencies": {
"@eslint/js": "^9.39.2",
"@fortawesome/fontawesome-free": "^7.1.0",
"@tailwindcss/vite": "^4.3.0",
"@vitejs/plugin-react": "^5.2.0",
"@vitest/coverage-v8": "^4.0.16",
"@xterm/addon-fit": "^0.10.0",
"@xterm/addon-web-links": "^0.11.0",
"@xterm/xterm": "^5.5.0",
"concurrently": "^9.1.0",
"eslint": "^9.39.2",
"prettier": "^3.7.4",
"rollup-plugin-visualizer": "^6.0.5",
"vite": "^8.0.16",
"vitest": "^4.0.16"
},
"overrides": {
"pino": "6.14.0"
}
}