-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
83 lines (83 loc) · 2.46 KB
/
package.json
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
{
"name": "@jod/design-system",
"version": "0.0.0",
"private": true,
"type": "module",
"main": "dist/main.js",
"types": "dist/main.d.ts",
"files": [
"dist",
"lib"
],
"engines": {
"node": "^20.0.0"
},
"license": "EUPL-1.2",
"scripts": {
"dev": "vite build -w",
"build": "tsc && vite build",
"format": "prettier . --write",
"lint": "eslint . --report-unused-disable-directives --max-warnings 0",
"test:unit": "vitest --run",
"test:watch": "vitest --watch",
"storybook": "storybook dev -p 6006 --no-open",
"storybook:build": "storybook build",
"prepare": "husky && npm run build"
},
"peerDependencies": {
"react": "^19"
},
"dependencies": {
"@ark-ui/react": "^4.9.1",
"@floating-ui/react": "^0.27.4",
"@headlessui/react": "^2.1.10",
"@tailwindcss/vite": "^4.0.7",
"cva": "^1.0.0-beta.3",
"react": "^19",
"react-icons": "^5.5.0",
"tailwind-merge": "^3.0.1"
},
"devDependencies": {
"@chromatic-com/storybook": "^3.2.4",
"@singlestore/eslint-plugin-react-hooks-disable-import": "^1.0.2",
"@storybook/addon-a11y": "^8.5.7",
"@storybook/addon-essentials": "^8.5.7",
"@storybook/addon-interactions": "^8.5.7",
"@storybook/addon-links": "^8.5.7",
"@storybook/addon-themes": "^8.5.7",
"@storybook/blocks": "^8.5.7",
"@storybook/manager-api": "^8.5.7",
"@storybook/preview-api": "^8.5.7",
"@storybook/react": "^8.5.7",
"@storybook/react-vite": "^8.5.7",
"@storybook/test": "^8.5.7",
"@storybook/theming": "^8.5.7",
"@testing-library/jest-dom": "^6.4.2",
"@testing-library/react": "^16.2.0",
"@types/node": "^22.13.4",
"@types/react": "^19.0.10",
"@vitejs/plugin-react-swc": "^3.8.0",
"@vitest/coverage-v8": "^3.0.6",
"eslint": "^9.20.1",
"eslint-config-prettier": "^10.0.1",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-react": "^7.37.4",
"eslint-plugin-react-hooks": "^5.0.0",
"eslint-plugin-react-refresh": "^0.4.19",
"eslint-plugin-sonarjs": "^3.0.2",
"eslint-plugin-storybook": "^0.11.3",
"globals": "^15.15.0",
"husky": "^9.1.7",
"jsdom": "^26.0.0",
"lint-staged": "^15.4.3",
"prettier-plugin-organize-imports": "^4.1.0",
"prettier-plugin-tailwindcss": "^0.6.11",
"storybook": "^8.5.7",
"tailwindcss": "^4.0.0",
"typescript": "~5.7.3",
"typescript-eslint": "^8.24.0",
"vite": "^6.1.1",
"vite-plugin-dts": "^4.5.0",
"vitest": "^3.0.6"
}
}