-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
53 lines (53 loc) · 1.3 KB
/
package.json
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
{
"name": "verge",
"version": "0.0.0",
"license": "GPL-3.0",
"type": "module",
"scripts": {
"dev": "tauri dev",
"build": "tauri build",
"web:dev": "vite",
"web:build": "tsc && vite build",
"web:preview": "vite preview",
"tauri": "tauri"
},
"dependencies": {
"@radix-ui/react-slot": "^1.0.2",
"@tauri-apps/api": "2.0.0-beta.8",
"ahooks": "^3.7.8",
"class-variance-authority": "^0.7.0",
"clsx": "^2.1.0",
"dayjs": "^1.11.10",
"i18next": "^23.7.15",
"lucide-react": "^0.303.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-error-boundary": "^4.0.12",
"react-hook-form": "^7.49.2",
"react-i18next": "^14.0.0",
"react-icons": "^4.12.0",
"react-router-dom": "^6.21.1",
"swr": "^2.2.4",
"tailwind-merge": "^2.2.0",
"tailwindcss-animate": "^1.0.7",
"zustand": "^4.4.7"
},
"devDependencies": {
"@tauri-apps/cli": "2.0.0-beta.13",
"@types/node": "^20.10.6",
"@types/react": "^18.2.46",
"@types/react-dom": "^18.2.18",
"@vitejs/plugin-react": "^4.2.1",
"autoprefixer": "^10.4.16",
"postcss": "^8.4.32",
"tailwindcss": "^3.4.0",
"typescript": "^5.3.3",
"vite": "^5.0.10"
},
"prettier": {
"tabWidth": 2,
"semi": true,
"singleQuote": false,
"endOfLine": "lf"
}
}