-
-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
121 lines (121 loc) · 4.03 KB
/
package.json
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
{
"name": "defguard-client",
"private": false,
"version": "1.1.0",
"type": "module",
"scripts": {
"dev": "npm-run-all --parallel vite typesafe-i18n",
"build": "tsc && vite build",
"preview": "vite preview",
"typesafe-i18n": "typesafe-i18n",
"generate-translation-types": "typesafe-i18n --no-watch",
"lint": "eslint --config ./.eslintrc.cjs src && prettier --check src/**/*.{ts,tsx,scss} && tsc",
"fix": "prettier --end-of-line lf -w src/**/*.{ts,tsx,scss} && eslint --fix --config ./.eslintrc.cjs src",
"vite": "vite",
"eslint": "eslint",
"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"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"pnpm": {
"peerDependencyRules": {
"ignoreMissing": [
"react-native"
]
}
},
"dependencies": {
"@floating-ui/react": "^0.26.3",
"@hookform/resolvers": "^3.3.2",
"@ladle/react": "^4.1.1",
"@stablelib/base64": "^1.0.1",
"@stablelib/x25519": "^1.0.3",
"@tanstack/query-core": "^5.12.1",
"@tanstack/react-virtual": "3.0.0-beta.54",
"@tauri-apps/api": "^1.6.0",
"@types/byte-size": "^8.1.2",
"byte-size": "^8.1.1",
"classnames": "^2.3.2",
"compare-versions": "^6.1.0",
"dayjs": "^1.11.13",
"detect-browser": "^5.3.0",
"fast-deep-equal": "^3.1.3",
"file-saver": "^2.0.5",
"framer-motion": "^10.16.12",
"html-react-parser": "^5.0.7",
"itertools": "^2.1.2",
"lodash-es": "^4.17.21",
"p-timeout": "^6.1.2",
"prop-types": "^15.8.1",
"radash": "^11.0.0",
"react": "^18.2.0",
"react-auth-code-input": "^3.2.1",
"react-click-away-listener": "^2.2.3",
"react-dom": "^18.2.0",
"react-hook-form": "^7.48.2",
"react-loading-skeleton": "^3.3.1",
"react-markdown": "^9.0.1",
"react-qr-code": "^2.0.15",
"react-router-dom": "^6.20.1",
"react-virtualized-auto-sizer": "^1.0.24",
"recharts": "^2.10.3",
"rehype-sanitize": "^6.0.0",
"rxjs": "^7.8.1",
"tauri-plugin-log-api": "github:tauri-apps/tauri-plugin-log",
"tauri-plugin-window-state-api": "github:tauri-apps/tauri-plugin-window-state#v1",
"use-breakpoint": "^4.0.1",
"zod": "^3.22.4",
"zustand": "^4.4.7"
},
"devDependencies": {
"@hookform/devtools": "^4.3.1",
"@svgr/cli": "^8.1.0",
"@tanstack/react-query": "^5.12.2",
"@tanstack/react-query-devtools": "^5.12.2",
"@tauri-apps/cli": "^1.6.2",
"@types/file-saver": "^2.0.7",
"@types/lodash-es": "^4.17.12",
"@types/node": "^20.10.3",
"@types/react": "^18.2.41",
"@types/react-dom": "^18.2.17",
"@typescript-eslint/eslint-plugin": "^6.13.1",
"@typescript-eslint/parser": "^6.13.1",
"@vitejs/plugin-react": "^4.2.0",
"@vitejs/plugin-react-swc": "^3.5.0",
"autoprefixer": "^10.4.20",
"eslint": "^8.55.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.29.0",
"eslint-plugin-prettier": "^5.0.1",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.4.5",
"eslint-plugin-simple-import-sort": "^10.0.0",
"npm-run-all": "^4.1.5",
"postcss": "^8.4.32",
"sass": "^1.69.5",
"typedoc": "^0.25.4",
"typesafe-i18n": "^5.26.2",
"typescript": "^5.3.2",
"typescript-eslint-language-service": "^5.0.5",
"vite": "^4.5.3"
},
"volta": {
"node": "20.5.1"
}
}