-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
114 lines (114 loc) · 3.56 KB
/
package.json
File metadata and controls
114 lines (114 loc) · 3.56 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
{
"name": "lab",
"version": "1.0.0",
"type": "module",
"packageManager": "pnpm@10.29.3",
"scripts": {
"dev": "vite",
"build": "tsc -b && vite build --mode production",
"preview": "vite preview",
"test": "pnpm test:unit && pnpm test:storybook",
"test:unit": "vitest run --no-ui --config vitest.config.unit.ts",
"test:unit:watch": "vitest --no-ui --config vitest.config.unit.ts",
"test:storybook": "vitest run --no-ui --config vitest.config.ts",
"test:storybook:watch": "vitest --no-ui --config vitest.config.ts",
"test:ui": "vitest --ui",
"test:coverage": "vitest --coverage",
"lint": "eslint . --cache --cache-location .eslintcache",
"typecheck": "tsc --noEmit",
"format": "prettier --write \"src/**/*.{ts,tsx}\"",
"clean": "rm -rf dist node_modules",
"generate:api": "openapi-ts",
"storybook": "storybook dev -p 6006 --no-open",
"build-storybook": "storybook build",
"build-storybook:gh-pages": "STORYBOOK_BASE_PATH=/lab storybook build"
},
"dependencies": {
"@fontsource-variable/space-grotesk": "5.2.10",
"@headlessui/react": "2.2.9",
"@heroicons/react": "2.2.0",
"@radix-ui/react-scroll-area": "1.2.10",
"@tailwindcss/vite": "4.1.18",
"@tanstack/react-query": "5.90.21",
"@tanstack/react-router": "1.159.5",
"@tanstack/react-table": "8.21.3",
"@tanstack/router-plugin": "1.159.5",
"clsx": "2.1.1",
"culori": "4.0.2",
"echarts": "6.0.0",
"echarts-for-react": "3.0.6",
"echarts-gl": "2.0.9",
"html-to-image": "1.11.13",
"react": "19.2.4",
"react-datepicker": "9.1.0",
"react-dom": "19.2.4",
"react-hook-form": "7.71.1",
"zod": "4.3.6"
},
"devDependencies": {
"@chromatic-com/storybook": "5.0.1",
"@commitlint/cli": "20.4.1",
"@commitlint/config-conventional": "20.4.1",
"@eslint/compat": "2.0.2",
"@eslint/css": "0.14.1",
"@eslint/js": "9.39.2",
"@hey-api/openapi-ts": "0.92.3",
"@storybook/addon-docs": "10.2.8",
"@storybook/addon-themes": "10.2.8",
"@storybook/addon-vitest": "10.2.8",
"@storybook/builder-vite": "10.2.8",
"@storybook/react-vite": "10.2.8",
"@tailwindcss/forms": "0.5.11",
"@testing-library/jest-dom": "6.9.1",
"@testing-library/react": "16.3.2",
"@testing-library/user-event": "14.6.1",
"@types/culori": "4.0.1",
"@types/node": "25.2.3",
"@types/react": "19.2.14",
"@types/react-dom": "19.2.3",
"@vitejs/plugin-react": "5.1.4",
"@vitest/browser": "4.0.18",
"@vitest/browser-playwright": "4.0.18",
"@vitest/ui": "4.0.18",
"cron-parser": "4.9.0",
"eslint": "9.39.2",
"eslint-config-prettier": "10.1.8",
"eslint-plugin-better-tailwindcss": "4.2.0",
"eslint-plugin-n": "17.23.2",
"eslint-plugin-prettier": "5.5.5",
"eslint-plugin-react": "7.37.5",
"eslint-plugin-react-hooks": "7.0.1",
"eslint-plugin-react-refresh": "0.5.0",
"eslint-plugin-storybook": "10.2.8",
"globals": "17.3.0",
"jsdom": "28.0.0",
"msw": "2.12.10",
"msw-storybook-addon": "2.0.6",
"playwright": "1.58.2",
"prettier": "3.8.1",
"prettier-plugin-tailwindcss": "0.7.2",
"rollup-plugin-visualizer": "6.0.5",
"storybook": "10.2.8",
"tailwindcss": "4.1.18",
"typescript": "5.9.3",
"typescript-eslint": "8.55.0",
"vite": "7.3.1",
"vitest": "4.0.18"
},
"msw": {
"workerDirectory": [
"public"
]
},
"pnpm": {
"peerDependencyRules": {
"allowedVersions": {
"echarts-gl>echarts": "6"
}
}
},
"volta": {
"node": "24.13.0",
"pnpm": "10.29.3"
}
}