-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
125 lines (125 loc) · 4.42 KB
/
package.json
File metadata and controls
125 lines (125 loc) · 4.42 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
120
121
122
123
124
125
{
"name": "trydevutils-app",
"private": true,
"version": "0.1.4",
"license": "MIT",
"type": "module",
"scripts": {
"dev": "vite",
"dev:frontend": "vite --port 1420",
"build": "vite build",
"build:frontend": "vite build",
"build:ci": "vite build && npm run test:ci",
"tauri": "tauri",
"tauri:dev": "npm run sync:version && tauri dev",
"tauri:build": "npm run sync:version && tauri build",
"test": "vite preview --port 3000 --host & sleep 5 && npx playwright test",
"test:ci": "npx playwright install --with-deps chromium && vite preview --port 3000 --host & sleep 5 && npx playwright test --reporter=line",
"check": "tsc && vite build",
"build:dev": "vite build --mode development",
"lint": "eslint .",
"preview": "npm run build && vite preview",
"build:extension": "npm run sync:version && vite build --mode extension",
"extension:prepare": "npm run sync:version && vite build --mode extension && cp extension/manifest.json dist-extension/ && cp -r extension/icons dist-extension/ && rm -f dist-extension/_redirects",
"sync:version": "node scripts/sync-version.mjs"
},
"dependencies": {
"@hookform/resolvers": "^5.2.2",
"@radix-ui/react-accordion": "^1.2.12",
"@radix-ui/react-alert-dialog": "^1.1.15",
"@radix-ui/react-aspect-ratio": "^1.1.8",
"@radix-ui/react-avatar": "^1.1.11",
"@radix-ui/react-checkbox": "^1.3.3",
"@radix-ui/react-collapsible": "^1.1.0",
"@radix-ui/react-context-menu": "^2.2.16",
"@radix-ui/react-dialog": "^1.1.2",
"@radix-ui/react-dropdown-menu": "^2.1.16",
"@radix-ui/react-hover-card": "^1.1.15",
"@radix-ui/react-label": "^2.1.8",
"@radix-ui/react-menubar": "^1.1.16",
"@radix-ui/react-navigation-menu": "^1.2.14",
"@radix-ui/react-popover": "^1.1.15",
"@radix-ui/react-progress": "^1.1.8",
"@radix-ui/react-radio-group": "^1.3.8",
"@radix-ui/react-scroll-area": "^1.2.10",
"@radix-ui/react-select": "^2.2.6",
"@radix-ui/react-separator": "^1.1.8",
"@radix-ui/react-slider": "^1.3.6",
"@radix-ui/react-slot": "^1.2.4",
"@radix-ui/react-switch": "^1.2.6",
"@radix-ui/react-tabs": "^1.1.13",
"@radix-ui/react-toast": "^1.2.15",
"@radix-ui/react-toggle": "^1.1.10",
"@radix-ui/react-toggle-group": "^1.1.11",
"@radix-ui/react-tooltip": "^1.2.8",
"@tanstack/react-query": "^5.95.0",
"@tauri-apps/api": "^2.10.1",
"@tauri-apps/plugin-clipboard-manager": "^2.3.2",
"@tauri-apps/plugin-dialog": "^2.6.0",
"@tauri-apps/plugin-fs": "^2.4.5",
"@tauri-apps/plugin-os": "^2.3.2",
"@tauri-apps/plugin-process": "^2.3.1",
"@tauri-apps/plugin-shell": "^2.3.5",
"@types/bcryptjs": "^3.0.0",
"@types/crypto-js": "^4.2.2",
"@types/js-yaml": "^4.0.9",
"@types/jsonwebtoken": "^9.0.10",
"@types/uuid": "^10.0.0",
"bcryptjs": "^3.0.3",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"cmdk": "^1.0.0",
"cronstrue": "^3.14.0",
"crypto-js": "^4.2.0",
"date-fns": "^3.6.0",
"diff": "^8.0.2",
"embla-carousel-react": "^8.3.0",
"fflate": "^0.8.2",
"hono": "^4.12.8",
"input-otp": "^1.2.4",
"ajv": "^8.18.0",
"ajv-formats": "^3.0.1",
"js-yaml": "^4.1.0",
"jsonlint-mod": "^1.7.6",
"lucide-react": "^0.577.0",
"next-themes": "^0.4.6",
"react": "^18.3.1",
"react-day-picker": "^8.10.1",
"react-dom": "^18.3.1",
"react-hook-form": "^7.72.0",
"react-markdown": "^10.1.0",
"react-resizable-panels": "^4.7.5",
"react-router-dom": "^7.13.1",
"recharts": "^2.15.4",
"sonner": "^2.0.7",
"sql-formatter": "^15.7.2",
"tailwind-merge": "^2.5.2",
"tailwindcss-animate": "^1.0.7",
"uuid": "^13.0.0",
"vaul": "^0.9.3",
"zod": "^4.3.6"
},
"devDependencies": {
"@eslint/js": "^9.39.3",
"@playwright/test": "^1.58.2",
"@tailwindcss/typography": "^0.5.19",
"@tauri-apps/cli": "^2.10.1",
"@types/chrome": "^0.1.38",
"@types/node": "^22.5.5",
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"@vitejs/plugin-react-swc": "^3.5.0",
"autoprefixer": "^10.4.27",
"eslint": "^9.9.0",
"eslint-plugin-react-hooks": "^5.1.0-rc.0",
"eslint-plugin-react-refresh": "^0.5.2",
"globals": "^15.9.0",
"postcss": "^8.5.8",
"tailwindcss": "^3.4.11",
"terser": "^5.46.1",
"typescript": "^5.9.3",
"typescript-eslint": "^8.57.1",
"vite": "^7.3.1",
"vite-plugin-pwa": "^1.2.0"
}
}