-
Notifications
You must be signed in to change notification settings - Fork 373
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.85 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.85 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
{
"name": "react",
"private": true,
"type": "module",
"scripts": {
"start": "vite --port 3000",
"dev": "vite",
"build": "pnpm run lint && vite build",
"build:watch": "vite build --watch --outDir ./../extension/src_react --emptyOutDir",
"serve": "vite preview",
"test": "vitest run",
"generate:api": "orval --config ./orval.config.ts",
"lint": "tsc --noEmit",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build"
},
"dependencies": {
"@headlessui/react": "^2.2.5",
"@heroicons/react": "^2.2.0",
"@radix-ui/react-select": "^2.2.5",
"@tailwindcss/postcss": "^4.1.11",
"@tailwindcss/vite": "^4.1.11",
"@tanstack/react-query": "^5.83.0",
"@tanstack/react-router": "^1.129.8",
"@tanstack/react-router-devtools": "^1.131.26",
"@tanstack/react-virtual": "^3.13.12",
"@tanstack/router-plugin": "^1.129.8",
"apache-arrow": "^19.0.1",
"clsx": "^2.1.1",
"elkjs": "^0.11.0",
"orval": "^7.10.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-router": "^7.7.0",
"reactflow": "^11.11.4",
"tailwindcss": "^4.1.11",
"vscode-uri": "^3.1.0"
},
"devDependencies": {
"@chromatic-com/storybook": "^4.0.1",
"@storybook/addon-a11y": "^9.0.18",
"@storybook/addon-docs": "^9.0.18",
"@storybook/addon-onboarding": "^9.0.18",
"@storybook/addon-vitest": "^9.0.18",
"@storybook/react-vite": "^9.0.18",
"@testing-library/dom": "^10.4.1",
"@testing-library/react": "^16.3.0",
"@types/react": "^18.3.23",
"@types/react-dom": "^18.3.7",
"@vitejs/plugin-react": "^4.7.0",
"@vitest/browser": "3.2.3",
"@vitest/coverage-v8": "3.2.3",
"jsdom": "^26.1.0",
"playwright": "^1.54.1",
"storybook": "^9.0.18",
"typescript": "^5.8.3",
"vite": "^6.3.5",
"vitest": "^3.2.4",
"web-vitals": "^4.2.4"
}
}