-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
97 lines (97 loc) · 2.96 KB
/
package.json
File metadata and controls
97 lines (97 loc) · 2.96 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
{
"name": "care-analytics-fe",
"version": "0.0.1",
"description": "",
"main": "index.js",
"scripts": {
"start": "concurrently -n 'build,serve' -c 'green.bold,blue.bold' \"npm run build:watch\" \"npm run preview\"",
"build:watch": "nodemon",
"build": "vite build",
"preview": "vite preview",
"prepare": "husky",
"lint": "eslint ./src",
"unimported": "unimported",
"lint-fix": "eslint ./src --fix",
"format": "prettier ./src --write",
"sort-locales": "tsx scripts/sort-locales.ts"
},
"author": "",
"license": "MIT",
"dependencies": {
"@hookform/resolvers": "^5.2.2",
"@radix-ui/react-alert-dialog": "^1.1.15",
"@radix-ui/react-dropdown-menu": "^2.1.11",
"@radix-ui/react-icons": "^1.3.2",
"@radix-ui/react-label": "^2.1.7",
"@radix-ui/react-popover": "^1.1.7",
"@radix-ui/react-scroll-area": "^1.2.4",
"@radix-ui/react-select": "^2.1.7",
"@radix-ui/react-slot": "^1.2.4",
"@radix-ui/react-switch": "^1.2.2",
"@radix-ui/react-tabs": "^1.1.4",
"@radix-ui/react-tooltip": "^1.2.8",
"@tailwindcss/forms": "^0.5.10",
"@tailwindcss/typography": "^0.5.16",
"@tailwindcss/vite": "^4.1.3",
"@tanstack/react-query": "^5.72.2",
"@types/node": "^22.14.0",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"cmdk": "^1.1.1",
"jotai": "^2.12.3",
"lucide-react": "^0.487.0",
"raviger": "^5.0.0-2",
"react-hook-form": "^7.65.0",
"react-i18next": "^15.4.1",
"recharts": "^2.15.2",
"sonner": "^2.0.7",
"tailwind-merge": "^3.2.0",
"use-keyboard-shortcut": "^1.1.6",
"zod": "^3.25.76"
},
"peerDependencies": {
"react": "^19.1.0",
"react-dom": "^19.1.0"
},
"devDependencies": {
"@originjs/vite-plugin-federation": "^1.4.0",
"@trivago/prettier-plugin-sort-imports": "^5.2.2",
"@types/react": "^19.1.0",
"@types/react-dom": "^19.1.2",
"@typescript-eslint/eslint-plugin": "^8.32.1",
"@typescript-eslint/parser": "^8.32.1",
"@vitejs/plugin-react": "^4.3.4",
"concurrently": "^9.1.2",
"eslint": "^9.26.0",
"eslint-config-prettier": "^10.1.5",
"eslint-plugin-i18next": "^6.1.1",
"eslint-plugin-no-relative-import-paths": "^1.6.1",
"eslint-plugin-prettier": "^5.4.0",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^5.2.0",
"globals": "^16.1.0",
"husky": "^9.1.7",
"lint-staged": "^16.0.0",
"nodemon": "^3.1.9",
"prettier-plugin-tailwindcss": "^0.6.11",
"react": "^19.1.0",
"react-dom": "^19.1.0",
"tailwindcss": "^4.1.3",
"tsx": "^4.19.4",
"typescript": "^5.8.3",
"vite": "^6.4.1"
},
"lint-staged": {
"*.{ts,tsx,js,jsx}": [
"prettier --write --ignore-unknown --plugin prettier-plugin-tailwindcss --plugin @trivago/prettier-plugin-sort-imports",
"eslint --fix",
"git update-index --again"
],
"public/locale/*.json": [
"npm run sort-locales"
]
},
"engines": {
"node": ">=22.9.0"
}
}