-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.26 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
{
"name": "switch-to-airos",
"private": true,
"version": "1.0.0",
"type": "module",
"scripts": {
"dev": "tauri dev",
"build": "tauri build",
"dev-vite": "vite",
"build-vite": "tsc && vite build",
"preview": "vite preview",
"tauri": "tauri",
"lint": "eslint src/**/*.ts src/**/*.tsx",
"lint-fix": "eslint src/**/*.ts src/**/*.tsx --fix"
},
"dependencies": {
"@headlessui/react": "^1.7.18",
"@tauri-apps/api": ">=2.0.0-beta.0",
"@tauri-apps/plugin-log": "^2.0.0-beta.2",
"@tauri-apps/plugin-os": "^2.0.0-beta.2",
"@tauri-apps/plugin-shell": ">=2.0.0-beta.0",
"@zedux/react": "^1.2.0",
"axios": "^1.6.8",
"i18next": "^23.10.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-i18next": "^14.1.0",
"react-spinners": "^0.13.8"
},
"devDependencies": {
"@tauri-apps/cli": ">=2.0.0-beta.0",
"@types/react": "^18.2.15",
"@types/react-dom": "^18.2.7",
"@typescript-eslint/eslint-plugin": "^7.3.1",
"@typescript-eslint/parser": "^7.1.0",
"@vitejs/plugin-react": "^4.2.1",
"autoprefixer": "^10.4.19",
"eslint": "^8.57.0",
"eslint-plugin-react": "^7.34.1",
"postcss": "^8.4.38",
"tailwindcss": "^3.4.3",
"typescript": "^5.0.2",
"vite": "^5.0.0"
}
}