-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
96 lines (96 loc) · 2.74 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
{
"name": "chatui",
"version": "1.0.0",
"description": "",
"main": "index.js",
"type": "module",
"module": "",
"types": "",
"scripts": {
"dev": "vite --host",
"build": "pnpm build:components",
"build:all": "vite build",
"build:components": "esno ./scripts/build.ts",
"docs:dev": "vitepress dev docs",
"docs:build": "vitepress build docs",
"docs:serve": "vitepress serve docs",
"test": "vitest",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook",
"coverage": "vitest run --coverage",
"fix-memory-limit": "cross-env LIMIT=4096 increase-memory-limit"
},
"formats": [
"es",
"umd",
"iife"
],
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@babel/core": "^7.20.2",
"@babel/preset-env": "^7.20.2",
"@babel/preset-react": "^7.18.6",
"@storybook/addon-actions": "^6.5.13",
"@storybook/addon-essentials": "^6.5.13",
"@storybook/addon-interactions": "^6.5.13",
"@storybook/addon-links": "^6.5.13",
"@storybook/builder-vite": "^0.2.5",
"@storybook/react": "^6.5.13",
"@storybook/testing-library": "^0.0.13",
"@testing-library/react": "^13.4.0",
"@types/react-sticky": "^6.0.4",
"@types/react-window": "^1.8.5",
"@types/testing-library__jest-dom": "^5.14.5",
"@vitest/coverage-c8": "^0.25.1",
"acorn-jsx": "^5.3.2",
"agora-chat": "^1.1.0",
"babel-loader": "^8.3.0",
"eslint": "^8.23.1",
"eslint-plugin-storybook": "^0.6.7",
"esno": "^0.16.3",
"handlebars": "^4.7.7",
"happy-dom": "^7.6.7",
"prettier": "^2.7.1",
"react-styleguidist": "^13.0.0",
"storybook-addon-sass-postcss": "^0.1.3",
"vite": "3.0.7",
"vite-plugin-dts": "^1.7.0",
"vitepress": "0.22.4",
"vitest": "^0.25.1"
},
"dependencies": {
"@rollup/plugin-typescript": "^9.0.2",
"@storybook/cli": "^6.5.13",
"@testing-library/jest-dom": "^5.16.5",
"@types/react": "^18.0.25",
"ahooks": "^3.7.5",
"chatuim2": "^1.3.9",
"classnames": "^2.3.2",
"core-js": "3",
"i18next": "^22.4.14",
"js-audio-recorder": "^1.0.7",
"link-preview-js": "^3.0.4",
"mobx": "^6.8.0",
"mobx-react-lite": "^3.4.3",
"prop-types": "^15.8.1",
"rc-motion": "^2.6.2",
"rc-tooltip": "5.1.1",
"rc-trigger": "^5.3.4",
"rc-util": "^5.27.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-i18next": "^12.2.0",
"react-sticky": "^6.0.3",
"react-string-replace": "^1.1.0",
"react-window": "^1.8.8",
"react-window-infinite-loader": "^1.0.8",
"recorder-js": "^1.0.7",
"sass": "^1.56.1",
"tsconfig-paths-webpack-plugin": "^4.0.1",
"tslib": "^2.4.1",
"typescript": "^4.8.4",
"vite-plugin-svgr": "^2.4.0"
}
}