-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
116 lines (116 loc) · 3.53 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
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
115
116
{
"name": "@kleros/ui-components-library",
"version": "3.1.2",
"description": "UI components library which implements the Kleros design system.",
"source": "./src/lib/index.ts",
"main": "./dist/esm/ui-components-library.js",
"module": "./dist/esm/ui-components-library.js",
"types": "./dist/ui-components-library.d.ts",
"style": "./dist/esm/ui-components-library.css",
"isLibrary": true,
"type": "module",
"browserslist": "> 0.5%, last 2 versions, not dead",
"repository": "[email protected]:kleros/ui-components-library",
"author": "Kleros",
"license": "MIT",
"exports": {
".": {
"import": "./dist/esm/ui-components-library.js",
"types": "./dist/ui-components-library.d.ts"
},
"./style.css": "./dist/esm/ui-components-library.css",
"./theme.css": "./dist/theme/theme.css"
},
"scripts": {
"build:theme": "vite build --config vite.config.theme.js",
"build": "vite build && yarn build:theme",
"build-storybook": "storybook build",
"check-style": "eslint 'src/**/*.{ts,tsx}'",
"check-types": "tsc --noEmit",
"clean": "rm -rf dist",
"prepare": "husky install",
"start": "storybook dev -p 6006"
},
"files": [
"dist"
],
"devDependencies": {
"@chromatic-com/storybook": "^3.2.5",
"@commitlint/cli": "^15.0.0",
"@commitlint/config-conventional": "^15.0.0",
"@eslint/compat": "^1.2.7",
"@eslint/eslintrc": "^3.3.0",
"@eslint/js": "^9.21.0",
"@storybook/addon-essentials": "^8.6.4",
"@storybook/addon-interactions": "^8.6.4",
"@storybook/addon-onboarding": "^8.6.4",
"@storybook/blocks": "^8.6.4",
"@storybook/react": "^8.6.4",
"@storybook/react-vite": "^8.6.4",
"@storybook/test": "^8.6.4",
"@tailwindcss/postcss": "^4.0.11",
"@types/node": "^22.13.10",
"@types/react": "^18.0.9",
"@types/react-dom": "^18.0.3",
"@typescript-eslint/eslint-plugin": "^8.26.0",
"@typescript-eslint/parser": "^8.26.0",
"@vitejs/plugin-react": "^4.3.4",
"eslint": "^9.21.0",
"eslint-config-prettier": "^10.1.1",
"eslint-import-resolver-parcel": "^1.10.6",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-prettier": "^5.2.3",
"eslint-plugin-react": "^7.37.4",
"eslint-plugin-react-hooks": "^5.2.0",
"eslint-plugin-security": "^3.0.1",
"eslint-plugin-storybook": "^0.11.4",
"globals": "^16.0.0",
"husky": "^7.0.0",
"lint-staged": "^12.1.2",
"prettier": "^3.5.3",
"prettier-plugin-tailwindcss": "^0.6.11",
"process": "^0.11.10",
"storybook": "^8.6.4",
"tailwindcss": "^4.0.11",
"typescript": "^5.8.2",
"vite": "^6.2.1",
"vite-plugin-svgr": "^4.3.0"
},
"peerDependencies": {
"@tailwindcss/postcss": "^4.0.11",
"react": "^18.0.0",
"react-dom": "^18.0.0",
"react-is": "^18.0.0",
"tailwindcss": "^4.0.11"
},
"dependencies": {
"@internationalized/date": "^3.7.0",
"@tailwindcss/vite": "^4.0.12",
"bignumber.js": "^9.1.2",
"clsx": "^2.1.1",
"react": "^18.0.0",
"react-aria-components": "^1.7.1",
"react-dom": "^18.0.0",
"react-is": "^18.0.0",
"simplebar": "^5.3.6",
"simplebar-react": "^2.3.6",
"tailwind-merge": "^3.0.2",
"tailwindcss-react-aria-components": "^2.0.0",
"usehooks-ts": "^2.9.1",
"vite-plugin-dts": "^4.5.3"
},
"lint-staged": {
"*.js": "eslint --cache --fix",
"*.{js,css,md}": "prettier --write"
},
"volta": {
"node": "20.18.3",
"yarn": "4.7.0"
},
"packageManager": "[email protected]",
"eslintConfig": {
"extends": [
"plugin:storybook/recommended"
]
}
}