-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
98 lines (98 loc) · 2.82 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
{
"name": "react-music-vite",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite --open --host",
"build": "vite build",
"preview": "vite preview",
"prettier": "prettier --write .",
"preinstall": "npx only-allow pnpm",
"prepare": "husky install",
"lint": "eslint . --ext .vue,.js,.jsx,.cjs,.mjs,.ts,.tsx,.cts,.mts --fix --ignore-path .gitignore",
"commit": "git add . & pnpm cz"
},
"dependencies": {
"@alex_xu/react-slider-vertify": "^1.2.0",
"@amap/amap-jsapi-loader": "^1.0.1",
"@ant-design/icons": "^5.0.1",
"@iconify-icon/react": "^1.0.7",
"@reduxjs/toolkit": "^1.9.2",
"@unocss/reset": "^0.49.4",
"@wangeditor/editor": "^5.1.23",
"@wangeditor/editor-for-react": "^1.0.6",
"@wangeditor/plugin-md": "^1.0.0",
"ahooks": "^3.7.7",
"antd": "^5.1.7",
"antd-img-crop": "^4.12.2",
"axios": "^1.2.3",
"classnames": "^2.3.2",
"commitizen": "^4.3.0",
"dayjs": "^1.11.7",
"hqk-leo-chat-uikit-react": "^1.0.1",
"html2canvas": "^1.4.1",
"immutability-helper": "^3.1.1",
"jspdf": "^2.5.1",
"lint-staged": "^13.2.2",
"lodash": "^4.17.21",
"prismjs": "^1.29.0",
"react": "^18.2.0",
"react-color": "^2.19.3",
"react-dnd": "^16.0.1",
"react-dnd-html5-backend": "^16.0.1",
"react-dom": "^18.2.0",
"react-image-gallery": "^1.2.11",
"react-infinite-scroll-component": "^6.1.0",
"react-is": "^18.2.0",
"react-pdf": "^6.2.2",
"react-redux": "^8.0.5",
"react-router-dom": "^6.8.0",
"redux-persist": "^6.0.0",
"redux-persist-transform-filter": "^0.0.22",
"tim-js-sdk": "^2.27.1",
"tim-upload-plugin": "^1.2.0",
"timeago.js": "^4.0.2",
"uuid": "^9.0.0",
"vite-plugin-prismjs": "^0.0.8"
},
"devDependencies": {
"@types/lodash": "^4.14.194",
"@types/react": "^18.0.27",
"@types/react-color": "^3.0.6",
"@types/react-dom": "^18.0.10",
"@types/react-image-gallery": "^1.2.0",
"@types/react-pdf": "^6.2.0",
"@types/styled-components": "^5.1.26",
"@types/uuid": "^9.0.1",
"@typescript-eslint/eslint-plugin": "^5.50.0",
"@typescript-eslint/parser": "^5.50.0",
"@vitejs/plugin-react": "^3.1.0",
"cz-conventional-changelog": "3.3.0",
"eslint": "^8.33.0",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.32.2",
"husky": "^8.0.0",
"less": "^4.1.3",
"prettier": "^2.8.3",
"styled-components": "^5.3.6",
"typescript": "^4.9.3",
"unocss": "^0.49.4",
"vite": "^4.1.0"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"lint-staged": {
"*.{js,vue,ts,jsx,tsx}": [
"prettier --write",
"eslint --fix"
],
"*.{html,css,less,scss,md}": [
"prettier --write"
]
}
}