forked from beenuar/AiSOC
-
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) · 2.75 KB
/
Copy pathpackage.json
File metadata and controls
60 lines (60 loc) · 2.75 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": "aisoc",
"version": "1.0.0",
"private": true,
"description": "AiSOC — Open-source AI-powered Security Operations Center",
"license": "MIT",
"author": "AiSOC contributors",
"workspaces": [
"apps/*",
"packages/*"
],
"scripts": {
"build": "turbo run build",
"dev": "turbo run dev",
"test": "turbo run test",
"lint": "turbo run lint",
"type-check": "turbo run type-check",
"clean": "turbo run clean && rm -rf node_modules",
"format": "prettier --write \"**/*.{ts,tsx,js,jsx,json,md}\"",
"infra:plan": "cd infra/terraform && terraform plan",
"infra:apply": "cd infra/terraform && terraform apply",
"docker:dev": "docker compose up -d",
"docker:down": "docker compose down",
"seed:demo": "docker compose exec api python -m app.scripts.seed_demo",
"demo:produce": "go run ./services/demo-producer",
"demo:produce:fast": "go run ./services/demo-producer --rate 8 --batch 10",
"detections:validate": "python3 scripts/validate_detections.py",
"playbooks:validate": "python3 scripts/validate_playbooks.py",
"playbooks:lint": "python3 scripts/lint_playbooks.py",
"eval:run": "python3 scripts/run_evals.py",
"eval:public": "python3 scripts/run_evals.py --out eval_report.json && python3 scripts/render_eval_charts.py eval_report.json",
"marketplace:build": "python3 scripts/build_marketplace.py",
"marketplace:check": "python3 scripts/build_marketplace.py --check",
"marketplace:sync": "python3 scripts/build_marketplace.py && python3 scripts/curate_detections.py && cp marketplace/index.json apps/web/public/marketplace/index.json && cp marketplace/curated.json apps/web/public/marketplace/curated.json && echo 'marketplace/index.json + curated.json built and synced to apps/web/public/'",
"marketplace:curate": "python3 scripts/curate_detections.py",
"marketplace:curate:check": "python3 scripts/curate_detections.py --check",
"aisoc:lab": "bash scripts/lab.sh",
"aisoc:doctor": "tsx scripts/aisoc-doctor.ts",
"aisoc:demo": "tsx scripts/aisoc-demo.ts",
"aisoc:demo:down": "docker compose -f docker-compose.demo.yml down -v",
"aisoc:demo:logs": "docker compose -f docker-compose.demo.yml logs -f",
"aisoc:acceptance": "tsx scripts/aisoc-acceptance.ts",
"aisoc:acceptance:cold": "tsx scripts/aisoc-acceptance.ts --cold",
"demo:public": "bash scripts/demo-public.sh",
"demo:public:tunnel-only": "bash scripts/demo-public.sh --skip-stack",
"demo:public:setup": "bash infra/cloudflare/tunnel.sh"
},
"devDependencies": {
"@types/node": "^20.11.0",
"prettier": "^3.2.4",
"tsx": "^4.21.0",
"turbo": "^2.9.9",
"typescript": "^6.0.3"
},
"engines": {
"node": ">=20.0.0",
"pnpm": ">=8.0.0"
},
"packageManager": "pnpm@8.15.1"
}