-
-
Notifications
You must be signed in to change notification settings - Fork 329
Expand file tree
/
Copy pathpackage.json
More file actions
94 lines (94 loc) · 2.95 KB
/
Copy pathpackage.json
File metadata and controls
94 lines (94 loc) · 2.95 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
{
"name": "ui",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"generate:api": "orval",
"lint": "oxlint -c .oxlintrc.json",
"test": "vitest run",
"test:watch": "vitest",
"test:ui": "vitest --ui"
},
"dependencies": {
"@dnd-kit/core": "^6.3.1",
"@dnd-kit/sortable": "^10.0.0",
"@dnd-kit/utilities": "^3.2.2",
"@microsoft/fetch-event-source": "^2.0.1",
"@radix-ui/react-accordion": "^1.2.14",
"@radix-ui/react-alert-dialog": "^1.1.17",
"@radix-ui/react-context-menu": "^2.3.1",
"@radix-ui/react-dialog": "^1.1.17",
"@radix-ui/react-label": "^2.1.10",
"@radix-ui/react-menubar": "^1.1.18",
"@radix-ui/react-popover": "^1.1.17",
"@radix-ui/react-progress": "^1.1.10",
"@radix-ui/react-scroll-area": "^1.2.12",
"@radix-ui/react-select": "^2.3.1",
"@radix-ui/react-separator": "^1.1.10",
"@radix-ui/react-slider": "^1.4.1",
"@radix-ui/react-slot": "^1.3.0",
"@radix-ui/react-switch": "^1.3.1",
"@radix-ui/react-tabs": "^1.1.15",
"@radix-ui/react-tooltip": "^1.2.10",
"@sentry/nextjs": "^10.63.0",
"@tanstack/react-query": "^5.101.1",
"@tanstack/react-virtual": "^3.14.4",
"@tauri-apps/api": "^2.11.1",
"@tauri-apps/plugin-dialog": "^2.7.1",
"@tauri-apps/plugin-fs": "^2.5.1",
"@tauri-apps/plugin-opener": "^2.5.4",
"@tauri-apps/plugin-process": "^2.3.1",
"@tauri-apps/plugin-updater": "^2.10.1",
"@use-gesture/react": "^10.3.1",
"@xstate/react": "^6.1.0",
"browser-fs-access": "^0.38.0",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"fflate": "^0.8.3",
"i18next": "^26.3.3",
"i18next-browser-languagedetector": "^8.2.1",
"i18next-localstorage-backend": "^4.3.1",
"immer": "^11.1.8",
"lucide-react": "^1.21.0",
"motion": "^12.42.0",
"next": "^16.2.9",
"next-themes": "^0.4.6",
"react": "^19.2.7",
"react-colorful": "^5.7.0",
"react-dom": "^19.2.7",
"react-error-boundary": "^6.1.2",
"react-hotkeys-hook": "^5.3.3",
"react-i18next": "^17.0.8",
"react-markdown": "^9.1.0",
"react-resizable-panels": "^4.11.2",
"remark-gfm": "^4.0.1",
"tailwind-merge": "^3.6.0",
"xstate": "^5.32.2",
"zustand": "^5.0.14"
},
"devDependencies": {
"@faker-js/faker": "^10.5.0",
"@mswjs/data": "^0.16.2",
"@tailwindcss/postcss": "^4.3.1",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@testing-library/user-event": "^14.6.1",
"@types/node": "^25.9.4",
"@types/react": "^19.2.17",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react": "^6.0.3",
"@vitest/ui": "^4.1.9",
"babel-plugin-react-compiler": "^1.0.0",
"jsdom": "^29.1.1",
"msw": "^2.14.6",
"orval": "^8.19.0",
"oxlint": "^1.71.0",
"tailwindcss": "^4.3.1",
"tw-animate-css": "^1.4.0",
"typescript": "^6.0.3",
"vitest": "^4.1.9"
}
}