This repository was archived by the owner on Mar 7, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
86 lines (86 loc) · 2.64 KB
/
package.json
File metadata and controls
86 lines (86 loc) · 2.64 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
{
"name": "ui-kit-monorepo",
"private": true,
"type": "module",
"license": "Apache-2.0",
"workspaces": [
"packages/*"
],
"scripts": {
"build": "pnpm -r build",
"dev": "pnpm --filter @etherisc/ui-kit dev",
"test": "pnpm -r test",
"test:a11y": "cd packages/ui-kit && pnpm run test-storybook:ci",
"test:a11y:specific": "cd packages/ui-kit && pnpm run test-storybook:specific",
"lint": "pnpm -r lint",
"format": "prettier --write \"**/*.{ts,tsx,md}\"",
"prepare": "node -e \"try { require('fs').existsSync('.git') && require('husky').install() } catch (e) {}\""
},
"devDependencies": {
"@changesets/cli": "^2.29.4",
"@commitlint/cli": "^19.8.1",
"@commitlint/config-conventional": "^19.8.1",
"@eslint/js": "^9.27.0",
"@storybook/addon-a11y": "8.6.14",
"@storybook/addon-docs": "8.6.14",
"@storybook/addon-toolbars": "^8.6.14",
"@storybook/builder-vite": "8.6.14",
"@storybook/react": "8.6.14",
"@storybook/react-vite": "8.6.14",
"@storybook/types": "8.6.14",
"@tailwindcss/vite": "^4.2.0",
"@types/node": "^22.15.19",
"@types/react": "^19.1.4",
"@types/react-dom": "^19.1.5",
"@vitejs/plugin-react": "^4.2.1",
"@vitest/coverage-c8": "^0.33.0",
"commitlint": "^19.8.1",
"eslint": "^9.27.0",
"eslint-plugin-react-hooks": "^5.2.0",
"eslint-plugin-react-refresh": "^0.4.20",
"husky": "^8.0.0",
"lint-staged": "^16.0.0",
"postcss": "^8.4.35",
"prettier": "^3.5.3",
"tailwindcss": "^3.4.1",
"tsup": "^8.5.0",
"tw-animate-css": "^1.4.0",
"typescript": "^5.8.3",
"typescript-eslint": "^8.32.1",
"vite": "^5.1.4",
"vitest": "^3.1.3"
},
"dependencies": {
"@radix-ui/react-alert-dialog": "^1.1.14",
"@radix-ui/react-checkbox": "^1.3.1",
"@radix-ui/react-hover-card": "^1.1.14",
"@radix-ui/react-progress": "^1.1.7",
"@radix-ui/react-radio-group": "^1.3.6",
"@radix-ui/react-select": "^2.2.4",
"@radix-ui/react-separator": "^1.1.7",
"@radix-ui/react-switch": "^1.2.5",
"@radix-ui/react-tabs": "^1.1.12",
"@radix-ui/react-toggle": "^1.1.9",
"@radix-ui/react-toggle-group": "^1.1.10",
"@radix-ui/react-tooltip": "^1.2.7",
"@tanstack/react-table": "^8.21.3",
"lucide-react": "^0.511.0",
"nanoid": "^5.1.5",
"react": "^19.1.0",
"react-dom": "^19.1.0"
},
"lint-staged": {
"packages/ui-kit/src/**/*.{js,jsx,ts,tsx}": [
"eslint --fix"
],
"packages/ui-kit/{tailwind.config.js,vite.config.ts,postcss.config.js}": [
"eslint --fix"
],
"eslint.config.js": [
"eslint --fix"
],
"*.{json,md}": [
"prettier --write"
]
}
}