-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
115 lines (115 loc) · 3.76 KB
/
Copy pathpackage.json
File metadata and controls
115 lines (115 loc) · 3.76 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
{
"name": "sample",
"private": true,
"type": "module",
"scripts": {
"dev": "vite",
"start": "vite",
"build": "vite build && tsc",
"serve": "vite preview",
"test": "vitest run",
"lint": "eslint \"src/**/*.{ts,tsx}\"",
"lint:fix": "eslint \"src/**/*.{ts,tsx}\" --fix",
"format": "prettier --write --cache \"${npm_package_config_prettier_glob}\"",
"format:check": "prettier --check --cache \"${npm_package_config_prettier_glob}\"",
"prepare": "husky",
"type-check": "tsc --noEmit",
"spell-check": "cspell . --no-progress --cache",
"fixer": "pnpm lint:fix && pnpm format && pnpm type-check && pnpm spell-check",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"eslint --fix",
"prettier --write"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"dependencies": {
"@hookform/resolvers": "^5.1.1",
"@iconify/react": "^6.0.0",
"@lukemorales/query-key-factory": "^1.3.4",
"@radix-ui/react-accordion": "^1.2.11",
"@radix-ui/react-checkbox": "^1.3.2",
"@radix-ui/react-dialog": "^1.1.14",
"@radix-ui/react-dropdown-menu": "^2.1.15",
"@radix-ui/react-label": "^2.1.7",
"@radix-ui/react-navigation-menu": "^1.2.13",
"@radix-ui/react-radio-group": "^1.3.7",
"@radix-ui/react-select": "^2.2.5",
"@radix-ui/react-slot": "^1.2.3",
"@radix-ui/react-tabs": "^1.1.12",
"@radix-ui/react-tooltip": "^1.2.7",
"@sentry/react": "^9.41.0",
"@t3-oss/env-core": "^0.13.8",
"@tailwindcss/vite": "^4.1.11",
"@tanstack/react-query": "^5.83.0",
"@tanstack/react-router": "^1.129.8",
"@tanstack/react-router-devtools": "^1.132.25",
"@tanstack/react-table": "^8.21.3",
"axios": "^1.12.0",
"i18next": "^25.3.2",
"react": "^19.1.0",
"react-dom": "^19.1.0",
"react-hook-form": "^7.61.1",
"react-i18next": "^15.6.1",
"react-scan": "^0.4.3",
"sonner": "^2.0.6",
"string-ts": "^2.2.1",
"tailwind-variants": "^1.0.0",
"tailwindcss": "^4.1.11",
"tailwindcss-animate": "^1.0.7",
"zod": "^4.0.8",
"zustand": "^5.0.6"
},
"devDependencies": {
"@chromatic-com/storybook": "^4.0.1",
"@commitlint/cli": "^19.8.1",
"@commitlint/config-conventional": "^19.8.1",
"@eslint/js": "^9.31.0",
"@sentry/vite-plugin": "^4.0.0",
"@storybook/addon-a11y": "^9.0.18",
"@storybook/addon-docs": "^9.0.18",
"@storybook/addon-onboarding": "^9.0.18",
"@storybook/react-vite": "^9.0.18",
"@stylistic/eslint-plugin": "^5.2.2",
"@tanstack/eslint-plugin-router": "^1.129.7",
"@tanstack/react-query-devtools": "^5.83.0",
"@tanstack/router-plugin": "^1.129.8",
"@testing-library/react": "^16.3.0",
"@types/node": "^24.1.0",
"@types/react": "^19.1.8",
"@types/react-dom": "^19.1.6",
"@vitejs/plugin-react": "^4.7.0",
"cspell": "^9.2.0",
"eslint": "^9.31.0",
"eslint-plugin-i18next": "^6.1.3",
"eslint-plugin-prefer-arrow-functions": "^3.6.2",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^5.2.0",
"eslint-plugin-simple-import-sort": "^12.1.1",
"eslint-plugin-sort-destructure-keys": "^2.0.0",
"eslint-plugin-storybook": "^9.0.18",
"eslint-plugin-unicorn": "^60.0.0",
"eslint-plugin-unused-imports": "^4.1.4",
"globals": "^16.3.0",
"husky": "^9.1.7",
"jsdom": "^26.1.0",
"prettier": "^3.6.2",
"prettier-plugin-tailwindcss": "^0.6.14",
"storybook": "^9.0.18",
"typescript": "^5.8.3",
"typescript-eslint": "^8.38.0",
"vite": "^7.0.6",
"vite-bundle-analyzer": "^1.1.0",
"vitest": "^3.2.4",
"web-vitals": "^5.0.3"
},
"packageManager": "pnpm@10.13.1"
}