-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 2.18 KB
/
package.json
File metadata and controls
72 lines (72 loc) · 2.18 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
{
"name": "blank-project",
"version": "0.0.0",
"private": true,
"type": "module",
"scripts": {
"build": "tsc -b && vite build",
"build-storybook": "storybook build",
"check": "npm run typecheck && npm run lint && npm run prettier && npm run spellcheck",
"dev": "vite",
"fix": "prettier --write . && eslint . --fix",
"lint": "eslint .",
"prettier": "prettier --check .",
"preview": "vite preview",
"spellcheck": "cspell --no-progress './src/**/*'",
"storybook": "storybook dev -p 6006",
"test-storybook": "vitest --project=storybook",
"typecheck": "tsc --noEmit --project ./tsconfig.app.json"
},
"dependencies": {
"@radix-ui/react-dropdown-menu": "2.1.16",
"@radix-ui/react-slot": "1.2.3",
"@tailwindcss/vite": "4.1.12",
"@tanstack/react-router": "1.131.10",
"@tanstack/react-router-devtools": "1.131.10",
"class-variance-authority": "0.7.1",
"clsx": "2.1.1",
"lucide-react": "0.539.0",
"react": "19.1.1",
"react-dom": "19.1.1",
"tailwind-merge": "3.3.1",
"tailwindcss": "4.1.12",
"tw-animate-css": "1.3.6"
},
"devDependencies": {
"@axe-core/react": "4.10.2",
"@chromatic-com/storybook": "4.1.0",
"@eslint-react/eslint-plugin": "1.52.4",
"@eslint/js": "9.33.0",
"@storybook/addon-a11y": "9.1.2",
"@storybook/addon-docs": "9.1.2",
"@storybook/addon-vitest": "9.1.2",
"@storybook/react-vite": "9.1.2",
"@tanstack/router-plugin": "1.131.11",
"@types/node": "24.2.1",
"@types/react": "19.1.10",
"@types/react-dom": "19.1.7",
"@vitejs/plugin-react-swc": "4.0.0",
"@vitest/browser": "3.2.4",
"@vitest/coverage-v8": "3.2.4",
"cspell": "9.2.0",
"eslint": "9.33.0",
"eslint-config-prettier": "10.1.8",
"eslint-plugin-jsx-a11y": "6.10.2",
"eslint-plugin-perfectionist": "4.15.0",
"eslint-plugin-prettier": "5.5.4",
"eslint-plugin-react-hooks": "5.2.0",
"eslint-plugin-react-refresh": "0.4.20",
"eslint-plugin-sonarjs": "3.0.4",
"eslint-plugin-storybook": "9.1.2",
"globals": "16.3.0",
"playwright": "1.54.2",
"prettier": "3.6.2",
"prettier-plugin-tailwindcss": "0.6.14",
"storybook": "9.1.2",
"typescript": "5.9.2",
"typescript-eslint": "8.39.1",
"vite": "7.1.2",
"vite-tsconfig-paths": "5.1.4",
"vitest": "3.2.4"
}
}