-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
94 lines (94 loc) · 3.26 KB
/
Copy pathpackage.json
File metadata and controls
94 lines (94 loc) · 3.26 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
{
"name": "polysiem",
"version": "0.6.3",
"description": "PolySIEM self-hosted homelab documentation and security dashboard",
"private": true,
"repository": {
"type": "git",
"url": "https://github.com/Realynx/PolySIEM"
},
"homepage": "https://github.com/Realynx/PolySIEM",
"bugs": {
"url": "https://github.com/Realynx/PolySIEM/issues"
},
"scripts": {
"dev": "next dev --turbopack",
"dev:https": "node server/ensure-dev-cert.js && next dev --turbopack --experimental-https --experimental-https-key data/certs/tls.key --experimental-https-cert data/certs/tls.crt",
"build": "next build",
"start": "next start",
"codefactor:collect": "node scripts/collect-codefactor-issues.mjs",
"codefactor:collect:browser": "node scripts/collect-codefactor-issues.mjs --browser",
"codefactor:check": "eslint . --max-warnings=0 --rule \"complexity: [error, 15]\" --rule \"no-duplicate-imports: error\"",
"lint": "eslint",
"db:migrate": "prisma migrate dev",
"db:deploy": "prisma migrate deploy",
"db:seed": "tsx --env-file=.env prisma/seed.ts",
"db:studio": "prisma studio",
"demo": "docker compose -f deploy/docker-compose.demo.yml up -d --wait",
"demo:logs": "docker compose -f deploy/docker-compose.demo.yml logs -f polysiem",
"demo:down": "docker compose -f deploy/docker-compose.demo.yml down",
"typecheck": "tsc --noEmit",
"test": "vitest run",
"check": "npm run typecheck && npm run lint && npm run test",
"quality:check": "npm run typecheck && npm run lint -- --max-warnings=0 && npm run codefactor:check && npm test && npm run build"
},
"dependencies": {
"@codemirror/lang-markdown": "^6.5.1",
"@dagrejs/dagre": "^3.0.0",
"@hookform/resolvers": "^5.4.0",
"@huggingface/transformers": "^4.2.0",
"@langchain/anthropic": "^1.5.1",
"@langchain/core": "^1.2.3",
"@langchain/langgraph": "^1.4.8",
"@langchain/ollama": "^1.3.0",
"@langchain/openai": "^1.5.5",
"@modelcontextprotocol/sdk": "^1.26.0",
"@prisma/client": "^6.19.3",
"@tanstack/react-query": "^5.101.2",
"@uiw/react-codemirror": "^4.25.11",
"@xyflow/react": "^12.11.2",
"bcryptjs": "^3.0.3",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"cmdk": "^1.1.1",
"date-fns": "^4.4.0",
"langchain": "^1.5.3",
"lucide-react": "^1.24.0",
"mcp-handler": "^1.1.0",
"next": "15.5.20",
"next-themes": "^0.4.6",
"node-forge": "^1.4.0",
"radix-ui": "^1.6.2",
"react": "19.1.0",
"react-dom": "19.1.0",
"react-hook-form": "^7.81.0",
"react-markdown": "^10.1.0",
"rehype-sanitize": "^6.0.0",
"remark-gfm": "^4.0.1",
"server-only": "^0.0.1",
"shadcn": "^4.13.0",
"sonner": "^2.0.7",
"tailwind-merge": "^3.6.0",
"undici": "^7.28.0",
"zod": "^4.4.3"
},
"devDependencies": {
"@eslint/eslintrc": "^3",
"@tailwindcss/postcss": "^4",
"@types/node": "^20",
"@types/react": "^19",
"@types/react-dom": "^19",
"eslint": "^9",
"eslint-config-next": "15.5.20",
"prisma": "^6.19.3",
"shellcheck": "^4.1.0",
"tailwindcss": "^4",
"tsx": "^4.23.1",
"tw-animate-css": "^1.4.0",
"typescript": "^5",
"vitest": "^4.1.10"
},
"prisma": {
"seed": "tsx --env-file=.env prisma/seed.ts"
}
}