-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
122 lines (122 loc) · 3.93 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
117
118
119
120
121
122
{
"name": "@clickhouse/click-ui",
"version": "0.0.187",
"description": "Official ClickHouse design system react library",
"type": "module",
"license": "Apache-2.0",
"files": [
"dist"
],
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/click-ui.es.js",
"require": "./dist/click-ui.umd.js"
}
},
"main": "./dist/click-ui.umd.js",
"module": "./dist/click-ui.es.js",
"types": "./dist/index.d.ts",
"keywords": [
"click-ui",
"clickhouse",
"design system"
],
"repository": {
"type": "git",
"url": "https://github.com/ClickHouse/click-ui.git"
},
"homepage": "https://clickhouse.com",
"scripts": {
"watch": "vitest --watch",
"test": "vitest",
"dev": "vite",
"generate-tokens": "node build-tokens.js",
"typecheck": "tsc --noEmit",
"build": "tsc && vite build",
"build:watch": "watch 'npm run build' ./src",
"lint": "eslint src --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
"preview": "vite preview",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build",
"chromatic": "npx chromatic",
"publish:click-ui": "npm run test && npm run build && npm publish"
},
"dependencies": {
"@h6s/calendar": "^2.0.1",
"@radix-ui/react-accordion": "^1.1.2",
"@radix-ui/react-avatar": "^1.0.4",
"@radix-ui/react-checkbox": "^1.0.4",
"@radix-ui/react-context-menu": "^2.1.5",
"@radix-ui/react-dialog": "^1.0.5",
"@radix-ui/react-dismissable-layer": "^1.0.5",
"@radix-ui/react-dropdown-menu": "^2.0.6",
"@radix-ui/react-hover-card": "^1.0.7",
"@radix-ui/react-popover": "^1.0.7",
"@radix-ui/react-popper": "^1.1.3",
"@radix-ui/react-radio-group": "^1.1.3",
"@radix-ui/react-scroll-area": "^1.0.5",
"@radix-ui/react-separator": "^1.0.3",
"@radix-ui/react-tabs": "^1.0.4",
"@radix-ui/react-toast": "^1.1.5",
"@radix-ui/react-tooltip": "^1.0.7",
"lodash": "^4.17.21",
"react-sortablejs": "^6.1.4",
"react-syntax-highlighter": "^15.5.0",
"react-virtualized-auto-sizer": "^1.0.20",
"react-window": "^1.8.9",
"sortablejs": "^1.15.0"
},
"devDependencies": {
"@radix-ui/react-switch": "^1.0.2",
"@storybook/addon-a11y": "^7.3.2",
"@storybook/addon-essentials": "^7.0.18",
"@storybook/addon-interactions": "^7.0.18",
"@storybook/addon-links": "^7.0.18",
"@storybook/blocks": "^7.0.18",
"@storybook/manager-api": "^7.0.23",
"@storybook/react": "^7.0.18",
"@storybook/react-vite": "^7.0.18",
"@storybook/testing-library": "^0.1.0",
"@storybook/theming": "^7.0.23",
"@testing-library/dom": "^10.1.0",
"@testing-library/jest-dom": "^6.4.5",
"@testing-library/react": "^15.0.7",
"@testing-library/user-event": "^14.5.2",
"@tokens-studio/sd-transforms": "^0.10.3",
"@types/lodash-es": "^4.17.7",
"@types/react": "^18.3.2",
"@types/react-dom": "^18.3.0",
"@types/react-syntax-highlighter": "^15.5.13",
"@types/react-window": "^1.8.8",
"@types/sortablejs": "^1.15.2",
"@types/styled-components": "^5.1.34",
"@typescript-eslint/eslint-plugin": "^7.16.1",
"@typescript-eslint/parser": "^7.16.1",
"@vitejs/plugin-react": "^4.2.1",
"babel-plugin-styled-components": "^2.1.4",
"chromatic": "^6.18.2",
"eslint": "^8.57.0",
"eslint-plugin-prefer-arrow-functions": "^3.3.2",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.4.7",
"eslint-plugin-storybook": "^0.8.0",
"jsdom": "^24.0.0",
"prop-types": "^15.8.1",
"storybook": "^7.0.18",
"storybook-addon-pseudo-states": "^2.0.1",
"styled-components": "^6.1.11",
"stylis": "^4.3.0",
"ts-node": "^10.9.1",
"typescript": "^5.5.3",
"vite": "^5.2.11",
"vite-plugin-dts": "^3.9.1",
"vitest": "^2.0.3",
"watch": "^1.0.2"
},
"peerDependencies": {
"react": "^18.2.0",
"react-dom": "^18.2.0",
"styled-components": ">= 5"
}
}