-
Notifications
You must be signed in to change notification settings - Fork 374
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.4 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.4 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
{
"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"
},
"dependencies": {
"@headlessui/react": "^2.2.4",
"@heroicons/react": "^2.2.0",
"@radix-ui/react-select": "^2.2.5",
"@tailwindcss/postcss": "^4.1.7",
"@tailwindcss/vite": "^4.1.7",
"@tanstack/react-query": "^5.77.2",
"@tanstack/react-router": "^1.120.10",
"@tanstack/react-router-devtools": "^1.120.10",
"@tanstack/react-virtual": "^3.13.9",
"@tanstack/router-plugin": "^1.120.10",
"apache-arrow": "^19.0.1",
"clsx": "^2.1.1",
"elkjs": "^0.8.2",
"orval": "^7.9.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-router": "^7.6.1",
"reactflow": "^11.11.4",
"tailwindcss": "^4.1.7",
"vscode-uri": "^3.1.0"
},
"devDependencies": {
"@testing-library/dom": "^10.4.0",
"@testing-library/react": "^16.3.0",
"@types/react": "^18.3.22",
"@types/react-dom": "^18.3.7",
"@vitejs/plugin-react": "^4.5.0",
"jsdom": "^26.1.0",
"typescript": "^5.8.3",
"vite": "^6.3.5",
"vitest": "^3.1.4",
"web-vitals": "^4.2.4"
}
}