forked from openimsdk/openim-electron-demo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
118 lines (118 loc) · 3.54 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
{
"name": "OpenIM-GPT",
"version": "1.0.0",
"main": "dist-electron/main/index.js",
"description": "OpenIM Electron Demo.",
"author": "blooming",
"private": true,
"debug": {
"env": {
"VITE_DEV_SERVER_URL": "http://127.0.0.1:7777/"
}
},
"scripts": {
"dev": "vite --force --host",
"build": "vite build",
"preview": "vite preview",
"pree2e": "vite build --mode=test",
"e2e": "playwright test",
"format": "prettier --write .",
"lint": "eslint --ext .js,.jsx,.ts,.tsx src",
"lint:fix": "eslint --ext .js,.jsx,.ts,.tsx --fix --quiet src",
"prepare": "husky install"
},
"devDependencies": {
"@commitlint/cli": "^17.4.4",
"@commitlint/config-conventional": "^17.4.4",
"@playwright/test": "^1.31.0",
"@types/md5": "^2.3.2",
"@types/react": "^18.0.28",
"@types/react-dom": "^18.0.11",
"@types/uuid": "^9.0.1",
"@typescript-eslint/eslint-plugin": "^5.53.0",
"@typescript-eslint/parser": "^5.53.0",
"@vitejs/plugin-legacy": "^4.1.0",
"@vitejs/plugin-react": "^3.1.0",
"autoprefixer": "^10.4.13",
"electron": "^22.3.27",
"electron-builder": "^23.6.0",
"eslint": "^8.34.0",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-simple-import-sort": "^10.0.0",
"husky": "^8.0.3",
"lint-staged": "^13.1.2",
"postcss": "^8.4.21",
"postcss-nesting": "^12.0.2",
"prettier": "^2.8.4",
"prettier-plugin-tailwindcss": "^0.2.3",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"sass": "^1.58.3",
"tailwindcss": "^3.2.7",
"terser": "^5.19.0",
"typescript": "^4.9.5",
"vite": "^4.1.4",
"vite-electron-plugin": "^0.8.2",
"vite-plugin-electron": "^0.11.1"
},
"engines": {
"node": "^14.18.0 || >=16.0.0"
},
"lint-staged": {
"src/**/*.{tsx,ts}": [
"prettier --write",
"eslint --fix"
],
"*.{json,html,css,scss,xml,md}": [
"prettier --write"
]
},
"dependencies": {
"@ant-design/icons": "^5.1.4",
"@ckeditor/ckeditor5-basic-styles": "^41.3.1",
"@ckeditor/ckeditor5-editor-classic": "^41.3.1",
"@ckeditor/ckeditor5-essentials": "^41.3.1",
"@ckeditor/ckeditor5-image": "^41.3.1",
"@ckeditor/ckeditor5-mention": "^41.4.2",
"@ckeditor/ckeditor5-paragraph": "^41.3.1",
"@ckeditor/ckeditor5-react": "^6.2.0",
"@ckeditor/ckeditor5-theme-lark": "^41.3.1",
"@ckeditor/vite-plugin-ckeditor5": "^0.1.3",
"@livekit/components-react": "^2.3.1",
"@livekit/components-styles": "^1.0.12",
"@openim/electron-client-sdk": "^1.0.2",
"@tailwindcss/line-clamp": "^0.4.4",
"@uiw/react-markdown-preview": "^5.1.1",
"ahooks": "^3.7.7",
"antd": "^5.6.0",
"axios": "^1.4.0",
"clsx": "^1.2.1",
"date-fns": "^2.30.0",
"dayjs": "^1.11.7",
"electron-store": "^8.1.0",
"emoji-picker-element": "^1.21.3",
"i18next": "^22.5.0",
"i18next-browser-languagedetector": "^7.0.2",
"i18next-fs-backend": "^2.2.0",
"livekit-client": "^2.1.5",
"localforage": "^1.10.0",
"md5": "^2.3.0",
"mitt": "^3.0.0",
"open-im-sdk-wasm": "^3.5.3-alpha.5",
"react-draggable": "^4.4.5",
"react-i18next": "^12.3.1",
"react-image-file-resizer": "^0.4.8",
"react-query": "^3.39.3",
"react-resizable-panels": "^2.0.2",
"react-router-dom": "^6.11.1",
"react-use": "^17.4.0",
"react-virtuoso": "4.3.8",
"twemoji": "14.0.1",
"uuid": "^9.0.1",
"xgplayer": "^3.0.5",
"zustand": "^4.3.3"
}
}