-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (80 loc) · 2.72 KB
/
package.json
File metadata and controls
80 lines (80 loc) · 2.72 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
{
"name": "savnote",
"author": "Philipp Rich",
"license": "AGPL-3.0-only",
"private": true,
"version": "0.5.0",
"type": "module",
"engines": {
"pnpm": ">=10.0.0"
},
"description": "Android app for tracking personal savings",
"scripts": {
"generate-schema": "tsx src/devScripts/generateTinyBaseSchemas.ts ",
"license-report": "license-report --config license-report-config.json --output=markdown > LICENSES.md && echo 'For all dependencies under the **Apache 2.0 License**, refer to the [Apache License 2.0](https://www.apache.org/licenses/LICENSE-2.0).\n\nFor all dependencies under the **MIT License**, refer to the [MIT License](https://opensource.org/license/MIT).' >> LICENSES.md",
"test": "vitest",
"test:ui": "vitest --ui --coverage.enabled=true",
"test:coverage": "vitest run --coverage",
"dev": "pnpm generate-schema && vite",
"dev:android": "adb reverse tcp:8097 tcp:8097 & pnpm generate-schema && tauri android dev",
"tauri": "tauri",
"build:android-debug": "pnpm generate-schema && tauri android build --debug",
"build:android": "pnpm generate-schema && tauri android build --apk",
"build": "tsc && vite build",
"preview": "vite preview",
"fsd-check": "pnpm exec steiger ./src",
"prepare": "husky .husky"
},
"dependencies": {
"@tauri-apps/api": "^2.10.1",
"@tauri-apps/plugin-dialog": "~2.7.0",
"@tauri-apps/plugin-fs": "~2.5.0",
"@tauri-apps/plugin-opener": "^2.5.3",
"events": "^3.3.0",
"fuse.js": "^7.1.0",
"konsta": "^5.0.8",
"license-downloader": "^1.3.0",
"license-report": "^6.7.2",
"motion": "^12.38.0",
"numeral": "^2.0.6",
"react": "^19.2.5",
"react-dom": "^19.2.5",
"react-icons": "^5.5.0",
"react-modal-sheet": "^5.6.0",
"react-number-format": "^5.4.4",
"react-router": "^7.3.0",
"tauri-plugin-androidpermissionprompt-api": "^0.1.1",
"tinybase": "^5.4.9",
"zod": "^3.24.2"
},
"devDependencies": {
"@feature-sliced/steiger-plugin": "^0.5.5",
"@tailwindcss/vite": "^4.2.4",
"@tauri-apps/cli": "^2.11.0",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@types/node": "^22.13.10",
"@types/numeral": "^2.0.5",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-basic-ssl": "^2.3.0",
"@vitejs/plugin-react": "^6.0.1",
"@vitest/coverage-v8": "4.1.5",
"@vitest/ui": "4.1.5",
"autoprefixer": "^10.4.21",
"husky": "^9.1.7",
"jsdom": "^26.1.0",
"steiger": "^0.5.6",
"tailwindcss": "^4.2.4",
"tsx": "^4.21.0",
"typescript": "^6.0.3",
"vite": "^8.0.10",
"vitest": "^4.1.5"
},
"pnpm": {
"onlyBuiltDependencies": [
"esbuild",
"leveldown"
]
}
}