-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
85 lines (85 loc) · 2.47 KB
/
package.json
File metadata and controls
85 lines (85 loc) · 2.47 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
{
"name": "enops.dev",
"version": "0.1.0",
"private": true,
"author": {
"name": "santosh marar",
"url": "https://x.com/santosh_marar"
},
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "eslint",
"lint:fix": "eslint --fix",
"format": "prettier --write .",
"test": "tsc -p tsconfig.test.json && node .test-dist/tests/schema-transformer.test.js && node -e \"require('fs').rmSync('.test-dist', { recursive: true, force: true });\"",
"prepare": "husky"
},
"dependencies": {
"@ai-sdk/anthropic": "^2.0.56",
"@ai-sdk/openai": "^2.0.85",
"@ai-sdk/react": "^2.0.114",
"@anthropic-ai/sdk": "^0.71.2",
"@dbml/core": "^5.3.0",
"@monaco-editor/react": "^4.7.0",
"@radix-ui/react-accordion": "^1.2.12",
"@radix-ui/react-checkbox": "^1.3.3",
"@radix-ui/react-dialog": "^1.1.15",
"@radix-ui/react-hover-card": "^1.1.15",
"@radix-ui/react-label": "^2.1.8",
"@radix-ui/react-select": "^2.2.6",
"@radix-ui/react-separator": "^1.1.8",
"@radix-ui/react-slot": "^1.2.4",
"@radix-ui/react-switch": "^1.2.6",
"@radix-ui/react-tabs": "^1.1.13",
"@radix-ui/react-tooltip": "^1.2.8",
"@tabler/icons-react": "^3.35.0",
"@types/dagre": "^0.7.53",
"@vercel/analytics": "^1.6.1",
"@xyflow/react": "^12.10.0",
"ai": "^5.0.112",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"dagre": "^0.8.5",
"dexie": "^4.2.1",
"dexie-react-hooks": "^4.2.0",
"embla-carousel-react": "^8.6.0",
"html-to-image": "^1.11.13",
"lucide-react": "^0.560.0",
"monaco-editor": "^0.55.1",
"nanoid": "^5.1.6",
"next": "16.0.10",
"next-themes": "^0.4.6",
"openai": "^6.10.0",
"react": "19.2.3",
"react-dom": "19.2.3",
"recharts": "3.5.1",
"sonner": "^2.0.7",
"tailwind-merge": "^3.4.0",
"vaul": "^1.1.2",
"zustand": "^5.0.9"
},
"devDependencies": {
"@tailwindcss/postcss": "^4.1.18",
"@types/node": "^25.0.1",
"@types/react": "^19.2.7",
"@types/react-dom": "^19.2.3",
"eslint": "^9.39.1",
"eslint-config-next": "16.0.10",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.4",
"husky": "^9.1.7",
"lint-staged": "^16.2.7",
"prettier": "3.7.4",
"tailwindcss": "^4.1.18",
"tw-animate-css": "^1.4.0",
"typescript": "^5.9.3"
},
"lint-staged": {
"**/*.{js,ts,tsx,jsx,json,css,md}": [
"prettier --write",
"eslint --fix"
]
}
}