-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
111 lines (111 loc) · 3.19 KB
/
Copy pathpackage.json
File metadata and controls
111 lines (111 loc) · 3.19 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
{
"name": "react-advanced-app",
"private": true,
"version": "0.0.1",
"type": "module",
"engines": {
"node": ">=24"
},
"scripts": {
"dev": "vite",
"build": "tsc --noEmit && vite build",
"preview": "vite preview",
"test": "vitest",
"test:ui": "vitest --ui",
"test:coverage": "vitest --coverage",
"test:mutation": "stryker run",
"lint": "eslint . --max-warnings=0",
"lint:fix": "eslint . --fix",
"format": "prettier --write .",
"format:check": "prettier --check .",
"typecheck": "tsc --noEmit",
"api:gen": "orval",
"sonar:version": "mise exec -- sonar-scanner -v",
"sonar:scan": "mise exec -- sonar-scanner",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build",
"prepare": "husky"
},
"dependencies": {
"@assistant-ui/react": "^0.14.26",
"@assistant-ui/react-markdown": "^0.14.5",
"@hookform/resolvers": "^5.2.2",
"@tanstack/react-query": "^5.90.20",
"axios": "^1.13.4",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"cmdk": "^1.1.1",
"i18next": "^26.3.4",
"i18next-browser-languagedetector": "^8.2.0",
"i18next-http-backend": "^4.0.0",
"lucide-react": "^1.23.0",
"radix-ui": "^1.4.3",
"react": "^19.2.4",
"react-dom": "^19.2.4",
"react-hook-form": "^7.71.1",
"react-i18next": "^17.0.8",
"react-resizable-panels": "^4.5.9",
"react-router-dom": "^7.13.0",
"remark-gfm": "^4.0.1",
"tailwind-merge": "^3.4.0",
"zod": "^4.3.6",
"zustand": "^5.0.11"
},
"devDependencies": {
"@eslint-react/eslint-plugin": "^5.10.4",
"@eslint/js": "^10.0.1",
"@faker-js/faker": "^10.2.0",
"@storybook/addon-a11y": "^10.2.4",
"@storybook/addon-docs": "^10.2.4",
"@storybook/addon-vitest": "^10.2.4",
"@storybook/react-vite": "^10.2.4",
"@stryker-mutator/core": "^9.5.1",
"@stryker-mutator/vitest-runner": "^9.5.1",
"@tailwindcss/postcss": "^4.1.18",
"@tanstack/eslint-plugin-query": "^5.91.4",
"@testing-library/dom": "^10.4.1",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@testing-library/user-event": "^14.6.1",
"@types/node": "^26.1.0",
"@types/react": "^19.2.10",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react": "^5.1.3",
"@vitest/browser-playwright": "^4.0.18",
"@vitest/coverage-v8": "^4.0.18",
"@vitest/ui": "^4.0.18",
"eslint": "^10.6.0",
"eslint-plugin-react-hooks": "^7.0.1",
"eslint-plugin-storybook": "^10.2.4",
"husky": "^9.1.7",
"jsdom": "^29.1.1",
"lint-staged": "^17.0.8",
"msw": "^2.12.7",
"orval": "^8.2.0",
"playwright": "^1.58.1",
"postcss": "^8.5.6",
"prettier": "^3.8.1",
"storybook": "^10.2.4",
"tailwindcss": "^4.1.18",
"tw-animate-css": "^1.4.0",
"typescript": "^6.0.3",
"typescript-eslint": "^8.54.0",
"vite": "^8.1.3",
"vitest": "^4.0.18"
},
"overrides": {
"qs": "^6.15.2"
},
"msw": {
"workerDirectory": [
"public"
]
},
"lint-staged": {
"**/*.{ts,tsx,js,mjs,cjs}": [
"eslint --fix --no-warn-ignored",
"prettier --write"
],
"**/*.{json,css,md,mdx,yml,yaml,html}": "prettier --write"
}
}