-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
180 lines (180 loc) · 5.53 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
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
{
"name": "vite-web",
"private": true,
"version": "0.0.1",
"scripts": {
"start": "vite",
"build": "vite build",
"build:task": "vite build -c vite.task-config.ts",
"build:all": "npm run build:task && npm run build",
"lint": "eslint src --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
"lint:fix": "eslint --fix src",
"lint:css": "stylelint \"src/**/*.css\"",
"lint:style": "stylelint \"src/**/*.{js,ts,jsx,tsx}\"",
"prettify": "prettier --write src",
"doc:types": "tsc --project tsconfig.dHelper.json",
"doc:html": "jsdoc -c jsdoc.config.json",
"preview": "vite preview",
"test": "jest"
},
"findUnusedExports": {
"include": [
"./src/**/*"
],
"exclude": [
"./build",
"node_modules"
]
},
"eslintConfig": {
"extends": [
"react-app"
]
},
"lint-staged": {
"*.{ts,tsx,js,jsx}": [
"yarn run eslint --fix",
"yarn run lint:style",
"prettier --write"
],
"*.{css,md,json}": [
"prettier --write"
]
},
"dependencies": {
"@ant-design/charts": "^1.4.2",
"@ant-design/pro-table": "^3.9.0",
"@antv/s2": "^1.51.0",
"@antv/s2-react": "^1.44.0",
"@antv/x6-react-components": "^2.0.8",
"@antv/x6-react-shape": "^2.2.2",
"@dinero.js/currencies": "^2.0.0-alpha.1",
"@monaco-editor/react": "^4.5.1",
"@reduxjs/toolkit": "^1.8.0",
"antd": "^5.6.4",
"axios": "^1.5.1",
"classnames": "^2.3.2",
"crypto-random-string": "^5.0.0",
"currency.js": "^2.0.4",
"debounce-promise": "^3.1.2",
"dinero.js": "^1.9.1",
"dompurify": "^3.0.4",
"echarts": "^5.4.2",
"echarts-extension-amap": "^1.11.0",
"echarts-gl": "^2.0.9",
"echarts-liquidfill": "^3.1.0",
"echarts-wordcloud": "^2.1.0",
"events": "^3.3.0",
"exceljs": "^4.3.0",
"file-saver": "^2.0.5",
"flexlayout-react": "^0.5.12",
"highcharts": "^11.1.0",
"highcharts-react-official": "^3.2.0",
"i18next": "19.9.2",
"i18next-browser-languagedetector": "6.1.3",
"immer": "^9.0.5",
"js-cookie": "2.2.1",
"lodash": "^4.17.21",
"moment": "^2.29.4",
"monaco-editor": "0.28.1",
"polished": "^4.2.2",
"qs": "^6.11.2",
"quill-better-table": "^1.2.10",
"quill-blot-formatter": "^1.0.5",
"quill-image-drop-module": "^1.0.3",
"quill-image-resize-module-react": "^3.0.0",
"quilljs-markdown": "^1.2.0",
"react": "^18.2.0",
"react-app-polyfill": "2.0.0",
"react-countup": "^6.4.2",
"react-dev-inspector": "^2.0.0",
"react-dnd": "^14.0.2",
"react-dnd-html5-backend": "^14.0.0",
"react-dom": "^18.2.0",
"react-fast-marquee": "^1.6.1",
"react-grid-layout": "^1.3.4",
"react-helmet-async": "^1.3.0",
"react-hotkeys-hook": "^4.4.1",
"react-i18next": "^13.0.1",
"react-json-view": "^1.21.3",
"react-quill": "^2.0.0",
"react-redux": "^8.1.2",
"react-resizable": "^3.0.5",
"react-router": "^6.14.2",
"react-router-dom": "^6.14.2",
"react-window": "^1.8.9",
"read-excel-file": "^5.6.1",
"redux-persist": "^6.0.0",
"redux-undo": "^1.0.1",
"reveal.js": "^4.5.0",
"split.js": "^1.6.5",
"sql-formatter": "^12.2.3",
"styled-components": "5.3.3",
"uuid": "^9.0.1",
"video-react": "^0.16.0"
},
"devDependencies": {
"@babel/core": "^7.22.11",
"@babel/plugin-proposal-decorators": "^7.22.10",
"@babel/plugin-transform-runtime": "^7.22.10",
"@babel/preset-env": "^7.22.10",
"@react-dev-inspector/babel-plugin": "^2.0.0",
"@react-dev-inspector/vite-plugin": "^2.0.0",
"@rollup/plugin-alias": "^5.0.0",
"@rollup/plugin-babel": "^6.0.3",
"@rollup/plugin-commonjs": "^25.0.3",
"@rollup/plugin-json": "^6.0.0",
"@rollup/plugin-node-resolve": "^15.1.0",
"@rollup/plugin-replace": "^5.0.2",
"@rollup/plugin-typescript": "^11.1.2",
"@trivago/prettier-plugin-sort-imports": "^4.1.1",
"@types/events": "^3.0.0",
"@types/jest": "^29.5.3",
"@types/lodash": "^4.14.195",
"@types/node": "^20.4.4",
"@types/react": "^18.0.37",
"@types/react-dom": "^18.0.11",
"@types/react-helmet": "^6.1.6",
"@types/react-router": "^5.1.20",
"@types/react-router-dom": "^5.3.3",
"@types/styled-components": "^5.1.26",
"@types/uuid": "^9.0.3",
"@typescript-eslint/eslint-plugin": "^5.59.0",
"@typescript-eslint/parser": "^5.59.0",
"@vitejs/plugin-react": "^4.0.3",
"babel-jest": "^29.6.1",
"babel-plugin-styled-components": "^2.1.4",
"connect-history-api-fallback": "^2.0.0",
"core-js": "3.21.1",
"eslint": "^8.38.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-jsdoc": "^46.4.4",
"eslint-plugin-prettier": "^5.0.0",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.3.4",
"less": "^4.1.3",
"postcss": "^8.4.27",
"postcss-preset-env": "^9.0.0",
"postcss-syntax": "^0.36.2",
"prettier": "^3.0.0",
"regenerator-runtime": "^0.14.0",
"rollup": "^3.28.1",
"rollup-plugin-cleanup": "^3.2.1",
"rollup-plugin-progress": "^1.1.2",
"rollup-plugin-serve": "^2.0.2",
"rollup-plugin-visualizer": "^5.9.2",
"stylelint": "^15.10.2",
"stylelint-config-prettier": "^9.0.5",
"stylelint-config-recess-order": "^4.3.0",
"stylelint-config-recommended": "^13.0.0",
"stylelint-config-styled-components": "^0.1.1",
"typescript": "^5.0.2",
"vite": "^4.3.9",
"vite-plugin-progress": "^0.0.7",
"vite-plugin-svgr": "^3.2.0",
"vite-tsconfig-paths": "^4.2.0"
},
"resolutions": {
"core-js": "3.21.1"
}
}