-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 2.29 KB
/
package.json
File metadata and controls
75 lines (75 loc) · 2.29 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
{
"name": "kafsiem",
"private": true,
"version": "0.0.0",
"type": "module",
"packageManager": "npm@11.11.0",
"engines": {
"node": "25.8.1",
"npm": "11.11.0"
},
"volta": {
"node": "25.8.1",
"npm": "11.11.0"
},
"scripts": {
"dev": "vite",
"demo:ontology": "vite --open '/?demo=ontology'",
"demo:ontology:drones": "vite --open '/?demo=ontology&scenario=drones'",
"demo:ontology:scada": "vite --open '/?demo=ontology&scenario=scada'",
"demo:fusion": "vite --open '/?demo=fusion'",
"generate:api": "go generate ./api/...",
"fetch:alerts": "go run ./cmd/kafsiem-collector",
"fetch:alerts:watch": "go run ./cmd/kafsiem-collector --watch",
"collector:run": "go run ./cmd/kafsiem-collector --watch",
"typecheck": "tsc -b --pretty false",
"test": "vitest run",
"test:watch": "vitest",
"build": "tsc -b && vite build",
"lint": "eslint .",
"preview": "vite preview",
"ci": "npm run lint && npm run typecheck && npm run test && npm run build",
"docker:run": "sh -c 'if command -v docker-compose >/dev/null 2>&1; then docker-compose up --build; else docker compose up --build; fi'"
},
"dependencies": {
"clsx": "^2.1.1",
"cytoscape": "^3.33.2",
"leaflet": "^1.9.4",
"leaflet.heat": "^0.2.0",
"leaflet.markercluster": "^1.5.3",
"lucide-react": "^0.563.0",
"react": "^19.2.0",
"react-dom": "^19.2.0",
"tailwind-merge": "^3.4.0",
"three": "^0.183.2"
},
"devDependencies": {
"@eslint/js": "^9.39.1",
"@tailwindcss/vite": "^4.1.18",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@types/leaflet": "^1.9.21",
"@types/leaflet.markercluster": "^1.5.6",
"@types/node": "^24.10.1",
"@types/react": "^19.2.5",
"@types/react-dom": "^19.2.3",
"@types/three": "^0.183.1",
"@vitejs/plugin-react": "^5.1.1",
"eslint": "^9.39.1",
"eslint-plugin-react-hooks": "^7.0.1",
"eslint-plugin-react-refresh": "^0.4.24",
"globals": "^16.5.0",
"jsdom": "^29.0.1",
"tailwindcss": "^4.1.18",
"typescript": "~5.9.3",
"typescript-eslint": "^8.46.4",
"vite": "^7.3.2",
"vitest": "^4.1.0"
},
"overrides": {
"ajv": ">=6.14.0 <7",
"flatted": ">=3.4.1 <4",
"minimatch": ">=3.1.5 <4",
"rollup": ">=4.59.0 <5"
}
}