-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.13 KB
/
package.json
File metadata and controls
40 lines (40 loc) · 1.13 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
{
"name": "binky-app",
"version": "0.2.8",
"description": "Binky Podcast Manager - Desktop App",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview",
"tauri": "tauri",
"tauri dev": "tauri dev",
"tauri build": "tauri build",
"bump": "bash scripts/bump-version.sh",
"release": "bash scripts/bump-version.sh --release",
"retag": "bash scripts/bump-version.sh --retag"
},
"dependencies": {
"@sentry/browser": "^10.38.0",
"@tanstack/react-virtual": "^3.13.19",
"@tauri-apps/plugin-fs": "^2.4.5",
"@tauri-apps/plugin-opener": "^2.5.3",
"@tauri-apps/plugin-process": "^2.3.1",
"@tauri-apps/plugin-sql": "^2.3.2",
"@tauri-apps/plugin-updater": "^2.10.0",
"dompurify": "^3.3.1",
"i18next": "^25.8.5",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-i18next": "^16.5.4",
"recharts": "^3.7.0"
},
"devDependencies": {
"@tauri-apps/cli": "^2.0.0",
"@types/react": "^18.2.15",
"@types/react-dom": "^18.2.7",
"@vitejs/plugin-react": "^4.0.3",
"typescript": "^5.0.2",
"vite": "^5.0.0"
}
}