-
-
Notifications
You must be signed in to change notification settings - Fork 33
Expand file tree
/
Copy pathpackage.json
More file actions
126 lines (126 loc) · 4.36 KB
/
package.json
File metadata and controls
126 lines (126 loc) · 4.36 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
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
{
"name": "defguard-client",
"private": false,
"version": "1.6.9",
"type": "module",
"scripts": {
"dev": "npm-run-all --parallel vite typesafe-i18n",
"typecheck": "tsc --project ./tsconfig.app.json",
"build": "pnpm run typecheck && vite build",
"preview": "vite preview",
"typesafe-i18n": "typesafe-i18n",
"generate-translation-types": "typesafe-i18n --no-watch",
"fix": "biome check --fix && prettier src/**/*.scss -w --log-level silent",
"fix-unsafe": "biome check --fix --unsafe && prettier src/**/*.scss -w --log-level silent",
"lint": "biome lint && pnpm run typecheck && prettier src/**/*.scss --check --log-level error",
"lint-ci": "biome ci && pnpm run typecheck && prettier src/**/*.scss --check --log-level error",
"vite": "vite",
"prettier": "prettier",
"parse-client-svgs": "svgr --no-index --jsx-runtime automatic --svgo-config ./svgo.config.json --prettier-config ./.prettierrc --out-dir ./src/shared/components/svg/ --typescript ./src/shared/images/svg/",
"parse-ui-svgs": "svgr --no-index --jsx-runtime automatic --svgo-config ./svgo.config.json --prettier-config ./.prettierrc --out-dir ./src/shared/defguard-ui/components/svg/ --typescript ./src/shared/defguard-ui/images/svg/",
"parse-svgs": "pnpm parse-ui-svgs && pnpm parse-client-svgs",
"svgr": "svgr",
"tauri": "tauri",
"biome": "biome"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"dependencies": {
"@floating-ui/react": "^0.27.19",
"@hookform/resolvers": "^3.10.0",
"@react-hook/resize-observer": "^2.0.2",
"@stablelib/base64": "^2.0.1",
"@stablelib/x25519": "^2.0.1",
"@tanstack/query-core": "^5.100.14",
"@tanstack/react-virtual": "^3.13.26",
"@tauri-apps/api": "^2.11.0",
"@tauri-apps/plugin-clipboard-manager": "^2.3.2",
"@tauri-apps/plugin-deep-link": "^2.4.9",
"@tauri-apps/plugin-dialog": "^2.7.1",
"@tauri-apps/plugin-fs": "^2.5.1",
"@tauri-apps/plugin-http": "^2.5.9",
"@tauri-apps/plugin-log": "^2.8.0",
"@tauri-apps/plugin-notification": "^2.3.3",
"@tauri-apps/plugin-opener": "^2.5.4",
"@tauri-apps/plugin-os": "^2.3.2",
"@tauri-apps/plugin-process": "^2.3.1",
"@tauri-apps/plugin-window-state": "^2.4.1",
"@types/byte-size": "^8.1.2",
"@use-gesture/react": "^10.3.1",
"byte-size": "^9.0.1",
"classnames": "^2.5.1",
"clsx": "^2.1.1",
"compare-versions": "^6.1.1",
"dayjs": "^1.11.21",
"deepmerge-ts": "^7.1.5",
"detect-browser": "^5.3.0",
"fast-deep-equal": "^3.1.3",
"file-saver": "^2.0.5",
"get-text-width": "^1.0.3",
"html-react-parser": "^5.2.17",
"itertools": "^2.7.1",
"js-base64": "^3.7.8",
"lodash-es": "^4.18.1",
"merge-refs": "^2.0.0",
"millify": "^6.1.0",
"motion": "^12.40.0",
"p-timeout": "^6.1.4",
"prop-types": "^15.8.1",
"radash": "^12.1.1",
"react": "^19.2.6",
"react-auth-code-input": "^3.2.1",
"react-click-away-listener": "^2.4.1",
"react-dom": "^19.2.6",
"react-hook-form": "^7.76.1",
"react-hotkeys-hook": "^5.3.2",
"react-loading-skeleton": "^3.5.0",
"react-markdown": "^10.1.0",
"react-qr-code": "^2.0.21",
"react-router-dom": "^6.30.3",
"react-use-websocket": "^4.13.0",
"react-virtualized-auto-sizer": "^1.0.26",
"recharts": "^3.8.1",
"rehype-sanitize": "^6.0.0",
"rxjs": "^7.8.2",
"use-breakpoint": "^4.0.10",
"zod": "^3.25.76",
"zustand": "^5.0.13"
},
"devDependencies": {
"@biomejs/biome": "^2.4.15",
"@hookform/devtools": "^4.4.0",
"@svgr/cli": "^8.1.0",
"@tanstack/react-query": "^5.100.14",
"@tanstack/react-query-devtools": "^5.100.14",
"@tauri-apps/cli": "^2.11.2",
"@types/file-saver": "^2.0.7",
"@types/lodash-es": "^4.17.12",
"@types/node": "^24.12.4",
"@types/react": "^19.2.15",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react": "^5.2.0",
"@vitejs/plugin-react-swc": "^4.3.1",
"autoprefixer": "^10.5.0",
"npm-run-all": "^4.1.5",
"postcss": "^8.5.15",
"prettier": "^3.8.3",
"sass": "~1.92.1",
"typedoc": "^0.28.19",
"typesafe-i18n": "^5.27.1",
"typescript": "^5.9.3",
"vite": "^7.3.3"
},
"volta": {
"node": "20.5.1"
}
}