-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
68 lines (68 loc) · 2.14 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
{
"name": "ui-gallery",
"version": "0.1.30",
"type": "module",
"files": [
"package-dist"
],
"main": "./package-dist/ui-gallery.umd.cjs",
"module": "./package-dist/ui-gallery.es.js",
"types": "./package-dist/index.d.ts",
"exports": {
".": {
"import": "./package-dist/ui-gallery.es.js",
"require": "./package-dist/ui-gallery.umd.cjs",
"types": "./package-dist/index.d.ts"
},
"./styles": "./package-dist/index.css"
},
"style": "./package-dist/index.css",
"scripts": {
"dev": "vite",
"build-package": "rimraf package-dist && tsc -p tsconfig.app.json && vite build --config vite-package.config.ts",
"build": "tsc -b && vite build",
"lint": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
"preview": "vite preview",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build"
},
"dependencies": {
"@phosphor-icons/react": "^2.1.7",
"@storybook/addon-a11y": "^8.1.11",
"ag-grid-react": "^32.0.1",
"antd": "^5.19.0",
"dayjs": "^1.11.11",
"echarts-for-react": "^3.0.2",
"react": "^18.3.1",
"react-csv": "^2.2.2",
"react-dom": "^18.3.1",
"react-markdown": "^9.0.1",
"use-context-selector": "^2.0.0",
"vite-plugin-dts": "^3.9.1"
},
"devDependencies": {
"@chromatic-com/storybook": "^1.5.0",
"@storybook/addon-essentials": "^8.1.10",
"@storybook/addon-interactions": "^8.1.10",
"@storybook/addon-links": "^8.1.10",
"@storybook/addon-onboarding": "^8.1.10",
"@storybook/blocks": "^8.1.10",
"@storybook/react": "^8.1.10",
"@storybook/react-vite": "^8.1.10",
"@storybook/test": "^8.1.10",
"@types/react": "^18.3.3",
"@types/react-csv": "^1.1.10",
"@types/react-dom": "^18.3.0",
"@typescript-eslint/eslint-plugin": "^7.13.1",
"@typescript-eslint/parser": "^7.13.1",
"@vitejs/plugin-react": "^4.3.1",
"eslint": "^8.57.0",
"eslint-plugin-react-hooks": "^4.6.2",
"eslint-plugin-react-refresh": "^0.4.7",
"eslint-plugin-storybook": "^0.8.0",
"rimraf": "^5.0.7",
"storybook": "^8.1.10",
"typescript": "^5.2.2",
"vite": "^5.3.1"
}
}