-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
88 lines (88 loc) · 2.63 KB
/
Copy pathpackage.json
File metadata and controls
88 lines (88 loc) · 2.63 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
{
"name": "kusitms_admin",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"prepare": "husky install",
"dev": "vite",
"build": "tsc -b && vite build",
"type-check": "tsc -b --pretty false",
"lint": "eslint .",
"format:check": "prettier . --check",
"gen:index": "tsx scripts/gen-index.ts",
"gen:index:check": "tsx scripts/gen-index.ts --check",
"icons:build": "tsx scripts/build-icons.ts",
"icons:check": "tsx scripts/build-icons.ts --check",
"preview": "vite preview",
"test": "vitest",
"test:ui": "vitest --ui",
"test:coverage": "vitest run --coverage",
"test:e2e": "playwright test",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build"
},
"dependencies": {
"@base-ui/react": "^1.4.1",
"@fontsource-variable/geist": "^5.2.9",
"@kusitms.com/icons": "^0.1.0",
"@kusitms.com/tokens": "^0.2.0",
"@kusitms.com/ui": "^0.2.0",
"@tanstack/react-query": "^5.100.10",
"clsx": "^2.1.1",
"lucide-react": "^1.16.0",
"react": "^19.2.6",
"react-dom": "^19.2.6",
"react-hook-form": "^7.76.0",
"react-router": "^8.1.0",
"tailwind-merge": "^3.6.0",
"tailwind-variants": "^3.2.2",
"zod": "^4.4.3",
"zustand": "^5.0.13"
},
"devDependencies": {
"@commitlint/cli": "^21.2.0",
"@commitlint/config-conventional": "^21.2.0",
"@eslint/js": "^10.0.1",
"@playwright/test": "^1.60.0",
"@storybook/addon-a11y": "10.4.6",
"@storybook/addon-docs": "10.4.6",
"@storybook/react-vite": "10.4.6",
"@svgr/core": "^8.1.0",
"@svgr/plugin-jsx": "^8.1.0",
"@svgr/plugin-svgo": "^8.1.0",
"@tailwindcss/vite": "^4.3.0",
"@testing-library/react": "^16.3.2",
"@testing-library/user-event": "^14.6.1",
"@types/node": "^24.12.3",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react": "^6.0.1",
"@vitest/coverage-v8": "^4.1.6",
"eslint": "^10.3.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-react-hooks": "^7.1.1",
"eslint-plugin-react-refresh": "^0.5.2",
"eslint-plugin-storybook": "10.4.6",
"globals": "^17.6.0",
"happy-dom": "^20.9.0",
"husky": "^8.0.0",
"lint-staged": "^16.4.0",
"prettier": "^3.8.3",
"prettier-plugin-tailwindcss": "^0.8.0",
"storybook": "10.4.6",
"tailwindcss": "^4.3.0",
"tsx": "^4.22.4",
"typescript": "~6.0.2",
"typescript-eslint": "^8.59.2",
"vite": "^8.0.12",
"vitest": "^4.1.6"
},
"lint-staged": {
"*.{ts,tsx,js,json,css,md}": [
"eslint --fix",
"prettier --write"
]
}
}