-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 2.32 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 2.32 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
{
"name": "tealtiger-hub",
"private": true,
"version": "0.0.0",
"type": "commonjs",
"description": "Hub repository utilities for TealTiger documentation, schemas, examples, and integrations.",
"scripts": {
"api:start": "ts-node api/governance-events/index.ts",
"stream:start": "ts-node api/governance-stream/index.ts",
"dashboard:cost:dev": "vite --host 127.0.0.1 --config dashboard/cost-analytics/vite.config.ts",
"dashboard:cost:build": "vite build --config dashboard/cost-analytics/vite.config.ts",
"dashboard:compliance:dev": "vite --host 127.0.0.1 --config dashboard/compliance-status/vite.config.ts",
"dashboard:compliance:build": "vite build --config dashboard/compliance-status/vite.config.ts",
"dashboard:dev": "vite --host 127.0.0.1 --config dashboard/governance-feed/vite.config.ts",
"dashboard:build": "vite build --config dashboard/governance-feed/vite.config.ts",
"dashboard:mock-stream": "node -r ts-node/register dashboard/governance-feed/mock-stream.ts",
"build": "tsc --noEmit",
"test:api": "node --test -r ts-node/register tests/api/governance-api.test.ts",
"test:stream": "node --test -r ts-node/register tests/api/governance-stream.test.ts",
"test:ingestion": "node --test -r ts-node/register tests/api/governance-ingestion.test.ts",
"test:dashboard:compliance": "node --test -r ts-node/register tests/dashboard/compliance-status.test.ts",
"validate:policy": "ts-node scripts/validate-policy.ts",
"test:policy-validator": "ts-node scripts/test-validate-policy.ts"
},
"dependencies": {
"@fastify/swagger": "^9.7.0",
"@libsql/client": "^0.17.3",
"drizzle-orm": "^0.45.2",
"fastify": "^5.8.5",
"ws": "^8.18.3",
"zod": "^4.4.3"
},
"devDependencies": {
"@types/node": "^24.10.1",
"@types/react": "^19.2.16",
"@types/react": "^19.2.15",
"@types/react-dom": "^19.2.3",
"@types/ws": "^8.18.1",
"@vitejs/plugin-react": "^6.0.2",
"ajv": "^8.17.1",
"ajv-formats": "^3.0.1",
"react": "^19.2.7",
"react-dom": "^19.2.7",
"ts-node": "^10.9.2",
"typescript": "^5.9.3",
"vite": "^8.0.16"
"lucide-react": "^1.17.0",
"react": "^19.2.6",
"react-dom": "^19.2.6",
"recharts": "^3.8.1",
"react-window": "^1.8.10",
"ts-node": "^10.9.2",
"typescript": "^5.9.3",
"vite": "^8.0.14"
}
}