-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
119 lines (119 loc) · 4.18 KB
/
Copy pathpackage.json
File metadata and controls
119 lines (119 loc) · 4.18 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
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
{
"name": "fabric_ui",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "npm run dev:fabric",
"dev:fabric": "dotenv -e .env.local -- npm run vite-host",
"dev:local": "dotenv -e .github/deploy-public-env/.env.dev-local -e .env.local -- npm run vite-host",
"vite-host": "vite --host \"$VITE_HOST\"",
"build": "tsc -b && vite build",
"build:local": "tsc -b && vite build --mode localstudio",
"commitlint": "commitlint --edit",
"release": "semantic-release",
"update-sdk": "dotenv -e .env.local -- npm run update-sdk:fetch && npx -y openapi-typescript --root-types --alphabetize --enum ./dist/central-manager.json -o src/integrations/api/api.gen.d.ts",
"update-sdk:fetch": "mkdir -p dist && curl --location \"$VITE_CENTRAL_MANAGER_API_URL/openapi\" -u \"$HDB_ADMIN_USERNAME_FOR_OPENAPI:$HDB_ADMIN_PASSWORD_FOR_OPENAPI\" -o ./dist/central-manager.json",
"lint": "oxlint --format stylish .",
"lint:fix": "oxlint --format stylish . --fix",
"format": "dprint check",
"format:fix": "dprint fmt",
"format:staged": "dprint check --staged --allow-no-files",
"prepare": "husky",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"test:e2e:docker": "cd e2e && docker compose run --rm e2e",
"test:e2e:snapshots": "cd e2e && docker compose run --rm e2e pnpm update-snapshots"
},
"dependencies": {
"@ai-sdk/react": "^4.0.0",
"@datadog/browser-rum": "^7.0.0",
"@datadog/browser-rum-react": "^7.0.0",
"@harperfast/agent-tools": "^1.2.0",
"@harperfast/skills": "^1.10.0",
"@hookform/resolvers": "^5.0.0",
"@monaco-editor/react": "^4.7.0",
"@radix-ui/react-accordion": "^1.2.12",
"@radix-ui/react-alert-dialog": "^1.1.6",
"@radix-ui/react-context-menu": "^2.3.1",
"@radix-ui/react-dialog": "^1.1.6",
"@radix-ui/react-dropdown-menu": "^2.1.6",
"@radix-ui/react-label": "^2.1.2",
"@radix-ui/react-navigation-menu": "^1.2.5",
"@radix-ui/react-radio-group": "^1.2.3",
"@radix-ui/react-scroll-area": "^1.2.4",
"@radix-ui/react-select": "^2.1.6",
"@radix-ui/react-separator": "^1.1.2",
"@radix-ui/react-slot": "^1.1.2",
"@radix-ui/react-switch": "^1.2.6",
"@radix-ui/react-tabs": "^1.1.3",
"@radix-ui/react-toggle": "^1.1.10",
"@radix-ui/react-tooltip": "^1.1.8",
"@stripe/react-stripe-js": "^6.0.0",
"@stripe/stripe-js": "^9.0.0",
"@tailwindcss/vite": "^4.0.9",
"@tanstack/react-query": "^5.90.2",
"@tanstack/react-query-devtools": "^5.90.2",
"@tanstack/react-router": "1.170.18",
"@tanstack/react-router-devtools": "1.167.0",
"@tanstack/react-table": "^9.0.0",
"@types/node": "^24.0.0",
"@typescript/ata": "^0.9.8",
"ai": "^7.0.0",
"axios": "^1.7.9",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"create-harper": "^1.9.0",
"html-to-image": "^1.11.13",
"lucide-react": "^1.0.0",
"mermaid": "^11.13.0",
"monaco-editor": "0.56.0",
"monaco-yaml": "^5.5.1",
"motion": "^13.0.0",
"next-themes": "^0.4.4",
"react": "^19.0.0",
"react-complex-tree": "^2.6.1",
"react-dom": "^19.0.0",
"react-dropzone": "^20.0.0",
"react-hook-form": "^7.54.2",
"react-markdown": "^10.1.0",
"recharts": "^3.2.1",
"remark-gfm": "^4.0.1",
"reodotdev": "^1.0.0",
"sonner": "^2.0.1",
"swagger-ui-react": "^5.29.0",
"tailwind-merge": "^3.0.2",
"tailwindcss": "^4.0.9",
"tailwindcss-animate": "^1.0.7",
"zod": "4.4.3"
},
"devDependencies": {
"@commitlint/cli": "^21.0.0",
"@commitlint/config-conventional": "^21.0.0",
"@datadog/datadog-ci": "^5.9.0",
"@semantic-release/commit-analyzer": "^13.0.0",
"@semantic-release/github": "^12.0.0",
"@semantic-release/release-notes-generator": "^14.0.0",
"@testing-library/jest-dom": "^7.0.0",
"@testing-library/react": "^16.3.0",
"@types/react": "^19.0.8",
"@types/react-dom": "^19.0.3",
"@types/swagger-ui-react": "^5.18.0",
"@vitejs/plugin-react": "^6.0.0",
"@vitest/coverage-v8": "^4.0.0",
"dotenv-cli": "^11.0.0",
"dprint": "^0.55.0",
"happy-dom": "^20.9.0",
"harper": "5.1.23",
"husky": "^9.1.7",
"jsdom": "^30.0.0",
"oxlint": "^1.32.0",
"semantic-release": "^25.0.0",
"typescript": "~7.0.0",
"vite": "^8.0.0",
"vitest": "^4.0.0"
},
"packageManager": "pnpm@11.17.0",
"license": "Apache-2.0"
}