-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
122 lines (122 loc) · 3.42 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
122
{
"name": "wigxel_vite_template",
"version": "0.1.0",
"private": true,
"scripts": {
"start": "vite",
"build": "tsc && vite build",
"lint": "tsc --noEmit && biome lint ./src",
"format": "biome format --write .",
"test": "vitest",
"test:coverage": "vitest run --coverage --watch=false",
"prepare": "husky install"
},
"engines": {
"node": ">=18"
},
"eslintConfig": {
"extends": [
"react-app"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"dependencies": {
"@hookform/resolvers": "^3.9.0",
"@radix-ui/react-avatar": "^1.1.0",
"@radix-ui/react-checkbox": "^1.1.1",
"@radix-ui/react-dialog": "^1.1.1",
"@radix-ui/react-dropdown-menu": "^2.1.1",
"@radix-ui/react-label": "^2.1.0",
"@radix-ui/react-popover": "^1.1.1",
"@radix-ui/react-progress": "^1.1.0",
"@radix-ui/react-roving-focus": "^1.1.0",
"@radix-ui/react-select": "^2.1.1",
"@radix-ui/react-slot": "^1.1.0",
"@radix-ui/react-switch": "^1.1.0",
"@radix-ui/react-tabs": "^1.1.0",
"@radix-ui/react-tooltip": "^1.1.2",
"@tanstack/react-query": "^5.52.0",
"@testing-library/jest-dom": "^6.4.8",
"@testing-library/react": "^13.4.0",
"@testing-library/user-event": "^13.5.0",
"@types/react": "^18.3.4",
"@types/react-dom": "^18.3.0",
"@vitejs/plugin-react-swc": "^3.7.0",
"class-variance-authority": "^0.7.0",
"clsx": "^2.1.1",
"crypto-js": "^4.2.0",
"date-fns": "^3.6.0",
"destr": "^2.0.3",
"i18next": "^23.14.0",
"lodash": "^4.17.21",
"lucide-react": "^0.309.0",
"numeral": "^2.0.6",
"ofetch": "^1.3.4",
"ohash": "^1.1.3",
"prop-types": "^15.8.1",
"ramda": "^0.29.1",
"react": "^18.3.1",
"react-custom-scrollbars": "^4.2.1",
"react-dom": "^18.3.1",
"react-hook-form": "^7.52.2",
"react-use-event-hook": "^0.9.6",
"react-wrap-balancer": "^1.1.1",
"rxjs": "^7.8.1",
"tailwind-merge": "^2.5.2",
"tailwindcss-animate": "^1.0.7",
"typescript": "^5.5.4",
"ufo": "^1.5.4",
"uncrypto": "^0.1.3",
"usehooks-ts": "^2.16.0",
"vite": "^5.4.2",
"vite-tsconfig-paths": "^4.3.2",
"web-vitals": "^2.1.4",
"zod": "^3.23.8"
},
"devDependencies": {
"@biomejs/biome": "1.5.2",
"@openapi-codegen/cli": "^2.0.2",
"@openapi-codegen/typescript": "^8.0.2",
"@tanstack/react-router": "^1.49.1",
"@tanstack/router-devtools": "^1.49.1",
"@tanstack/router-vite-plugin": "^1.48.6",
"@types/crypto-js": "^4.2.2",
"@types/node": "^18.19.45",
"@types/ramda": "^0.29.12",
"@vitest/coverage-v8": "^1.6.0",
"autoprefixer": "^10.4.20",
"husky": "^8.0.3",
"jsdom": "^23.2.0",
"lint-staged": "^15.2.9",
"openapi-typescript-codegen": "^0.27.0",
"postcss": "^8.4.41",
"postman-to-openapi": "^3.0.1",
"prettier": "2.8.8",
"prettier-plugin-tailwindcss": "0.4.1",
"tailwindcss": "^3.4.10",
"unplugin-fonts": "^1.1.1",
"vite-plugin-svgr": "^4.2.0",
"vitest": "^1.6.0"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"prettier --write ./src",
"npx biome format --no-errors-on-unmatched --write ./src",
"npx biome lint --apply ./src"
],
"*.{css,html,md,mdx,yml,yaml}": [
"prettier --write ./src"
]
}
}