-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
110 lines (110 loc) · 3.68 KB
/
package.json
File metadata and controls
110 lines (110 loc) · 3.68 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
{
"name": "spendify",
"version": "3.0.0",
"tauriVersion": "1.0.0",
"androidVersion": 1,
"main": "src/main.tsx",
"license": "MIT",
"type": "module",
"scripts": {
"dev": "vite --host",
"dev:android": "vite build && npx cap sync && npx cap run android",
"dev:android-live": "npx cap run android --live-reload --port=2310 --host",
"dev:tauri": "tauri dev",
"build": "vite build",
"build:android": "tsx ./scripts/build.ts",
"build:android-old": "vite build && npx cap sync && npx cap build android",
"build:tauri": "tauri build",
"release": "tsx ./scripts/release.ts",
"preview": "vite preview",
"tauri": "tauri",
"format": "prettier --write \"src/**/*.{ts,tsx}\"",
"lint": "eslint \"**/*.{ts,tsx}\" --fix",
"typecheck": "tsc --noEmit",
"update": "ncu -u -x \"@capacitor/*,@capawesome/*,@capgo/*\" && ncu -u --target minor \"@capacitor/*,@capawesome/*,@capgo/*\""
},
"dependencies": {
"@capacitor-community/sqlite": "^7.0.2",
"@capacitor/android": "7.4.4",
"@capacitor/app": "7.1.1",
"@capacitor/core": "7.4.4",
"@capacitor/file-transfer": "^1.0.8",
"@capacitor/filesystem": "^7.1.6",
"@capacitor/preferences": "^7.0.3",
"@capacitor/splash-screen": "^7.0.4",
"@capacitor/status-bar": "7.0.4",
"@capawesome-team/capacitor-file-opener": "^7.0.1",
"@capawesome/capacitor-file-picker": "^7.2.0",
"@capgo/capacitor-social-login": "^7.20.0",
"@floating-ui/dom": "^1.7.4",
"@google/genai": "^1.34.0",
"@octokit/rest": "^22.0.1",
"@tiptap/core": "^3.14.0",
"@tiptap/extension-color": "^3.14.0",
"@tiptap/extension-image": "^3.14.0",
"@tiptap/extension-table": "^3.14.0",
"@tiptap/extension-table-cell": "^3.14.0",
"@tiptap/extension-table-header": "^3.14.0",
"@tiptap/extension-table-row": "^3.14.0",
"@tiptap/extension-text-align": "^3.14.0",
"@tiptap/extension-text-style": "^3.14.0",
"@tiptap/pm": "^3.14.0",
"@tiptap/react": "^3.14.0",
"@tiptap/starter-kit": "^3.14.0",
"async-mutex": "^0.5.0",
"capacitor-device": "^0.0.1",
"capacitor-secure-storage-plugin": "^0.12.0",
"capacitor-set-version": "^2.2.0",
"daisyui": "^5.5.14",
"dayjs": "^1.11.19",
"i18next": "^25.7.3",
"jeep-sqlite": "^2.8.0",
"kysely": "^0.28.9",
"lodash": "^4.17.21",
"lucide-react": "^0.562.0",
"mitt": "^3.0.1",
"motion": "^12.23.26",
"pako": "^2.1.0",
"react": "19.2.3",
"react-day-picker": "^9.13.0",
"react-dom": "19.2.3",
"react-i18next": "^16.5.0",
"react-query": "^3.39.3",
"react-router": "^7.11.0",
"react-toastify": "^11.0.5",
"recharts": "^3.6.0"
},
"devDependencies": {
"@capacitor/cli": "7.4.4",
"@tailwindcss/vite": "^4.1.18",
"@tauri-apps/cli": "^2.9.6",
"@types/lodash": "^4.17.21",
"@types/node": "^25.0.3",
"@types/pako": "^2.0.4",
"@types/react": "19.2.7",
"@types/react-dom": "19.2.3",
"@types/react-router": "^5.1.20",
"@types/semver": "^7.7.1",
"@vitejs/plugin-react": "^5.1.2",
"dotenv": "^17.2.3",
"eslint": "^9.39.2",
"eslint-config-prettier": "^10.1.8",
"eslint-js": "^0.0.1-security",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-prettier": "^5.5.4",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^7.0.1",
"eslint-plugin-react-refresh": "^0.4.26",
"eslint-plugin-simple-import-sort": "^12.1.1",
"globals": "^16.5.0",
"jsdom": "^27.3.0",
"prettier": "^3.7.4",
"tailwindcss": "^4.1.18",
"tsx": "^4.21.0",
"typescript": "~5.9.3",
"typescript-eslint": "^8.50.1",
"vite": "^7.3.0",
"vite-bundle-analyzer": "^1.3.2",
"vite-plugin-static-copy": "^3.1.4"
}
}