-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
95 lines (95 loc) · 3.05 KB
/
Copy pathpackage.json
File metadata and controls
95 lines (95 loc) · 3.05 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
{
"name": "desktop-app",
"private": true,
"version": "0.5.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"format": "prettier \"src/**/*\" --write --ignore-unknown",
"check:format": "prettier --check \"src/**/*\" --ignore-unknown",
"lint": "eslint \"src/**/*.{ts,tsx}\"",
"lint:fix": "eslint \"src/**/*.{ts,tsx}\" --fix",
"type-check": "tsc --noEmit",
"preview": "vite preview",
"tauri": "tauri",
"bundle:mind": "node src-tauri/scripts/prepare-mind-bundle.mjs",
"tauri:build": "tauri build",
"tauri:build:windows": "tauri build --target x86_64-pc-windows-msvc",
"tauri:dev": "tauri dev",
"prepare": "husky",
"test": "vitest",
"test:run": "vitest run",
"test:coverage": "vitest run --coverage"
},
"dependencies": {
"@hookform/resolvers": "^3.10.0",
"@reduxjs/toolkit": "^2.12.0",
"@tauri-apps/api": "2.11.1",
"@tauri-apps/plugin-clipboard-manager": "2.3.2",
"@tauri-apps/plugin-dialog": "2.7.1",
"@tauri-apps/plugin-fs": "2.5.1",
"@tauri-apps/plugin-log": "2.8.0",
"@tauri-apps/plugin-opener": "2.5.4",
"@tauri-apps/plugin-process": "2.3.1",
"@tauri-apps/plugin-shell": "2.3.5",
"@tauri-apps/plugin-updater": "2.10.1",
"axios": "^1.18.1",
"date-fns": "^4.4.0",
"decimal.js": "^10.6.0",
"i18next": "^25.10.10",
"i18next-browser-languagedetector": "^8.2.1",
"kaleido-sdk": "^0.1.13",
"kaleido-ui": "^0.1.92",
"lucide-react": "^0.575.0",
"minidenticons": "^4.2.1",
"qrcode.react": "^3.2.0",
"react": "^18.3.1",
"react-copy-to-clipboard": "^5.1.1",
"react-dom": "^18.3.1",
"react-hook-form": "^7.81.0",
"react-i18next": "^16.6.6",
"react-markdown": "^10.1.0",
"react-redux": "^8.1.3",
"react-router-dom": "^7.18.1",
"react-spinners": "^0.17.0",
"react-toastify": "^10.0.6",
"remark-breaks": "^4.0.0",
"remark-gfm": "^4.0.1",
"tailwind-merge": "^1.14.0",
"zod": "^3.25.76"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@tailwindcss/vite": "^4.3.2",
"@tauri-apps/cli": "^2.11.4",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@testing-library/user-event": "^14.6.1",
"@types/react": "^18.3.31",
"@types/react-copy-to-clipboard": "^5.0.7",
"@types/react-dom": "^18.3.7",
"@vitejs/plugin-react": "^4.7.0",
"@vitest/coverage-v8": "^4.1.10",
"eslint": "^9.39.5",
"eslint-import-resolver-typescript": "^4.4.5",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^7.1.1",
"eslint-plugin-sort-keys-fix": "^1.1.2",
"husky": "^9.1.7",
"jsdom": "^29.1.1",
"lint-staged": "^15.5.2",
"prettier": "^3.9.5",
"tailwindcss": "^4.3.2",
"typescript": "^5.9.3",
"typescript-eslint": "^8.63.0",
"vite": "^7.3.6",
"vite-plugin-node-polyfills": "^0.25.0",
"vitest": "^4.1.10"
},
"lint-staged": {
"src/**/*": "prettier --write --ignore-unknown",
"src/**/*.{ts,tsx}": "eslint --fix"
}
}