generated from finos-labs/dtcch-2026-hackathon-template
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
96 lines (96 loc) · 2.7 KB
/
package.json
File metadata and controls
96 lines (96 loc) · 2.7 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
95
96
{
"name": "calmguard",
"version": "1.3.0",
"private": true,
"description": "CALM-native continuous compliance DevSecOps platform",
"repository": {
"type": "git",
"url": "https://github.com/finos-labs/dtcch-2026-opsflow-llc.git"
},
"homepage": "https://github.com/finos-labs/dtcch-2026-opsflow-llc",
"bugs": {
"url": "https://github.com/finos-labs/dtcch-2026-opsflow-llc/issues"
},
"license": "Apache-2.0",
"packageManager": "pnpm@10.23.0",
"author": "OpsFlow LLC",
"keywords": [
"calm",
"finos",
"compliance",
"devsecops",
"architecture-as-code"
],
"scripts": {
"dev": "next dev --turbopack",
"build": "next build",
"start": "next start",
"lint": "eslint .",
"typecheck": "tsc --noEmit",
"test": "vitest",
"test:run": "vitest run",
"license-check": "license-checker --failOn 'GPL-2.0;GPL-3.0;AGPL-3.0'",
"prepare": "husky",
"docs:dev": "cd docs && pnpm start",
"docs:build": "cd docs && pnpm build",
"docs:api": "tsx scripts/generate-api-docs.ts"
},
"dependencies": {
"@ai-sdk/anthropic": "^3.0.44",
"@ai-sdk/google": "^3.0.29",
"@ai-sdk/openai": "^3.0.29",
"@ai-sdk/xai": "^3.0.57",
"@dagrejs/dagre": "^2.0.4",
"@finos/calm-cli": "^1.33.0",
"@radix-ui/react-checkbox": "^1.3.3",
"@radix-ui/react-dialog": "^1.1.15",
"@radix-ui/react-dropdown-menu": "^2.1.16",
"@radix-ui/react-scroll-area": "^1.2.10",
"@radix-ui/react-select": "^2.2.6",
"@radix-ui/react-separator": "^1.1.8",
"@radix-ui/react-slot": "^1.2.4",
"@radix-ui/react-tabs": "^1.1.13",
"@radix-ui/react-tooltip": "^1.2.8",
"@tailwindcss/postcss": "^4.1.18",
"@xyflow/react": "^12.10.1",
"ai": "^6.0.86",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"lucide-react": "^0.564.0",
"next": "^15.5.0",
"next-themes": "^0.4.6",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"recharts": "^3.7.0",
"shiki": "^3.22.0",
"sonner": "^2.0.7",
"tailwind-merge": "^3.4.1",
"yaml": "^2.8.2",
"zod": "^3.24.1",
"zustand": "^5.0.3"
},
"lint-staged": {
"src/**/*.{ts,tsx}": [
"eslint --fix --max-warnings=0"
]
},
"devDependencies": {
"@eslint/eslintrc": "^3.3.4",
"@types/node": "^22.10.0",
"@types/react": "^19.0.0",
"@types/react-dom": "^19.0.0",
"@vitejs/plugin-react": "^5.1.4",
"eslint": "^9.18.0",
"eslint-config-next": "^15.5.0",
"husky": "^9.1.7",
"jsdom": "^28.1.0",
"license-checker": "^25.0.1",
"lint-staged": "^16.2.7",
"postcss": "^8.4.49",
"tailwindcss": "^4.1.0",
"tsx": "^4.21.0",
"typescript": "^5.7.2",
"vite-tsconfig-paths": "^6.1.1",
"vitest": "^4.0.18"
}
}