@jiaozhiye/qm-design-react 1.11.21 → 1.11.23
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/index.esm.js +1 -1
- package/lib/index.full.js +1 -1
- package/lib/index.js +1 -1
- package/lib/style/index.css +2 -1
- package/lib/style/index.min.css +1 -1
- package/lib/table/src/hooks/useTableMemo.d.ts +1 -0
- package/lib/table/style/body.less +104 -103
- package/package.json +140 -140
|
@@ -1,103 +1,104 @@
|
|
|
1
|
-
/*
|
|
2
|
-
* @Author: 焦质晔
|
|
3
|
-
* @Date: 2020-02-28 22:13:54
|
|
4
|
-
* @Last Modified by: 焦质晔
|
|
5
|
-
* @Last Modified time: 2024-12-01 18:48:00
|
|
6
|
-
*/
|
|
7
|
-
.body--row {
|
|
8
|
-
&-draggable {
|
|
9
|
-
position: relative;
|
|
10
|
-
.drop-indicator {
|
|
11
|
-
position: absolute;
|
|
12
|
-
right: 0;
|
|
13
|
-
bottom: 0;
|
|
14
|
-
z-index: 5;
|
|
15
|
-
height: 2px;
|
|
16
|
-
background-color: @v-primary-color;
|
|
17
|
-
border-radius: 1px;
|
|
18
|
-
pointer-events: none;
|
|
19
|
-
&::after {
|
|
20
|
-
position: absolute;
|
|
21
|
-
top: -3px;
|
|
22
|
-
left: 0;
|
|
23
|
-
width: 8px;
|
|
24
|
-
height: 8px;
|
|
25
|
-
background-color: #fff;
|
|
26
|
-
border: 2px solid @v-primary-color;
|
|
27
|
-
border-radius: 50%;
|
|
28
|
-
content: '';
|
|
29
|
-
}
|
|
30
|
-
}
|
|
31
|
-
}
|
|
32
|
-
}
|
|
33
|
-
.body--column {
|
|
34
|
-
.cell--edit {
|
|
35
|
-
margin: 0 -1 * (@v-module-distance - 1px);
|
|
36
|
-
// placeholder
|
|
37
|
-
input::placeholder {
|
|
38
|
-
text-align: left;
|
|
39
|
-
}
|
|
40
|
-
// search
|
|
41
|
-
.ant-input-search {
|
|
42
|
-
width: calc(100% + 1px);
|
|
43
|
-
& > .ant-input-group > .ant-input-group-addon {
|
|
44
|
-
line-height: 1;
|
|
45
|
-
}
|
|
46
|
-
}
|
|
47
|
-
// search-helper-multiple
|
|
48
|
-
.search-helper-multiple {
|
|
49
|
-
.ant-input-group > .ant-select:first-child {
|
|
50
|
-
z-index: 1;
|
|
51
|
-
.ant-select-selector {
|
|
52
|
-
border-top-right-radius: 0;
|
|
53
|
-
border-bottom-right-radius: 0;
|
|
54
|
-
}
|
|
55
|
-
}
|
|
56
|
-
.ant-select-multiple {
|
|
57
|
-
.ant-select-selection-overflow-item-rest {
|
|
58
|
-
pointer-events: none;
|
|
59
|
-
}
|
|
60
|
-
}
|
|
61
|
-
}
|
|
62
|
-
// textArea
|
|
63
|
-
textarea[class='ant-input'] {
|
|
64
|
-
resize: none;
|
|
65
|
-
}
|
|
66
|
-
&.is-error {
|
|
67
|
-
position: relative;
|
|
68
|
-
.ant-input,
|
|
69
|
-
.ant-input-affix-wrapper
|
|
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
|
-
}
|
|
1
|
+
/*
|
|
2
|
+
* @Author: 焦质晔
|
|
3
|
+
* @Date: 2020-02-28 22:13:54
|
|
4
|
+
* @Last Modified by: 焦质晔
|
|
5
|
+
* @Last Modified time: 2024-12-01 18:48:00
|
|
6
|
+
*/
|
|
7
|
+
.body--row {
|
|
8
|
+
&-draggable {
|
|
9
|
+
position: relative;
|
|
10
|
+
.drop-indicator {
|
|
11
|
+
position: absolute;
|
|
12
|
+
right: 0;
|
|
13
|
+
bottom: 0;
|
|
14
|
+
z-index: 5;
|
|
15
|
+
height: 2px;
|
|
16
|
+
background-color: @v-primary-color;
|
|
17
|
+
border-radius: 1px;
|
|
18
|
+
pointer-events: none;
|
|
19
|
+
&::after {
|
|
20
|
+
position: absolute;
|
|
21
|
+
top: -3px;
|
|
22
|
+
left: 0;
|
|
23
|
+
width: 8px;
|
|
24
|
+
height: 8px;
|
|
25
|
+
background-color: #fff;
|
|
26
|
+
border: 2px solid @v-primary-color;
|
|
27
|
+
border-radius: 50%;
|
|
28
|
+
content: '';
|
|
29
|
+
}
|
|
30
|
+
}
|
|
31
|
+
}
|
|
32
|
+
}
|
|
33
|
+
.body--column {
|
|
34
|
+
.cell--edit {
|
|
35
|
+
margin: 0 -1 * (@v-module-distance - 1px);
|
|
36
|
+
// placeholder
|
|
37
|
+
input::placeholder {
|
|
38
|
+
text-align: left;
|
|
39
|
+
}
|
|
40
|
+
// search
|
|
41
|
+
.ant-input-search {
|
|
42
|
+
width: calc(100% + 1px);
|
|
43
|
+
& > .ant-input-group > .ant-input-group-addon {
|
|
44
|
+
line-height: 1;
|
|
45
|
+
}
|
|
46
|
+
}
|
|
47
|
+
// search-helper-multiple
|
|
48
|
+
.search-helper-multiple {
|
|
49
|
+
.ant-input-group > .ant-select:first-child {
|
|
50
|
+
z-index: 1;
|
|
51
|
+
.ant-select-selector {
|
|
52
|
+
border-top-right-radius: 0;
|
|
53
|
+
border-bottom-right-radius: 0;
|
|
54
|
+
}
|
|
55
|
+
}
|
|
56
|
+
.ant-select-multiple {
|
|
57
|
+
.ant-select-selection-overflow-item-rest {
|
|
58
|
+
pointer-events: none;
|
|
59
|
+
}
|
|
60
|
+
}
|
|
61
|
+
}
|
|
62
|
+
// textArea
|
|
63
|
+
textarea[class='ant-input'] {
|
|
64
|
+
resize: none;
|
|
65
|
+
}
|
|
66
|
+
&.is-error {
|
|
67
|
+
position: relative;
|
|
68
|
+
.ant-input,
|
|
69
|
+
.ant-input-affix-wrapper,
|
|
70
|
+
.ant-select > .ant-select-selector {
|
|
71
|
+
border-color: @v-danger-color;
|
|
72
|
+
box-shadow: none;
|
|
73
|
+
z-index: 1;
|
|
74
|
+
}
|
|
75
|
+
.ant-input-search {
|
|
76
|
+
& + .cell-error {
|
|
77
|
+
right: 38px;
|
|
78
|
+
}
|
|
79
|
+
}
|
|
80
|
+
.cell-error {
|
|
81
|
+
position: absolute;
|
|
82
|
+
top: calc(50% - 9px);
|
|
83
|
+
font-size: @v-font-size-small;
|
|
84
|
+
color: @v-danger-color;
|
|
85
|
+
right: 8px;
|
|
86
|
+
pointer-events: none;
|
|
87
|
+
z-index: 1;
|
|
88
|
+
}
|
|
89
|
+
}
|
|
90
|
+
}
|
|
91
|
+
&.col--center {
|
|
92
|
+
.cell--edit .ant-input {
|
|
93
|
+
text-align: center;
|
|
94
|
+
}
|
|
95
|
+
}
|
|
96
|
+
&.col--right {
|
|
97
|
+
.cell--edit .ant-input {
|
|
98
|
+
text-align: right;
|
|
99
|
+
}
|
|
100
|
+
}
|
|
101
|
+
&.selected {
|
|
102
|
+
background-color: @v-table-row-selected-background-color !important;
|
|
103
|
+
}
|
|
104
|
+
}
|
package/package.json
CHANGED
|
@@ -1,140 +1,140 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "@jiaozhiye/qm-design-react",
|
|
3
|
-
"version": "1.11.
|
|
4
|
-
"description": "A Component Library for React",
|
|
5
|
-
"keywords": [
|
|
6
|
-
"React",
|
|
7
|
-
"components",
|
|
8
|
-
"typescript"
|
|
9
|
-
],
|
|
10
|
-
"author": "jiaozhiye",
|
|
11
|
-
"license": "MIT",
|
|
12
|
-
"scripts": {
|
|
13
|
-
"dev": "cross-env NODE_ENV=development BABEL_ENV=web webpack serve --progress --config build/webpack.src.conf.js",
|
|
14
|
-
"build:lib": "yarn clean:lib && yarn build:umd && yarn build:esm && yarn build:type && yarn build:locale && yarn build:theme",
|
|
15
|
-
"build:umd": "cross-env NODE_ENV=production BABEL_ENV=lib webpack --config ./build/webpack.build.conf.js",
|
|
16
|
-
"build:esm": "cross-env BABEL_ENV=lib rollup --config ./build/build-esm.rollup.js",
|
|
17
|
-
"build:type": "gulp build --gulpfile ./build/build-type.gulp.js && cp-cli lib/packages lib && rimraf lib/packages",
|
|
18
|
-
"build:locale": "cross-env BABEL_ENV=lib babel packages/locale --extensions .ts --out-dir lib/locale",
|
|
19
|
-
"build:theme": "gulp build --gulpfile ./build/build-style.gulp.js",
|
|
20
|
-
"clean:lib": "rimraf lib",
|
|
21
|
-
"lint": "eslint ./packages --ext .js,.ts,.jsx,.tsx",
|
|
22
|
-
"lint-fix": "eslint --fix ./packages --ext .js,.ts,.jsx,.tsx",
|
|
23
|
-
"format": "prettier --write \"./packages/**/*.{js,ts,jsx,tsx}\""
|
|
24
|
-
},
|
|
25
|
-
"husky": {
|
|
26
|
-
"hooks": {
|
|
27
|
-
"pre-commit": "lint-staged"
|
|
28
|
-
}
|
|
29
|
-
},
|
|
30
|
-
"lint-staged": {
|
|
31
|
-
"packages/**/*.{js,ts,jsx,tsx}": [
|
|
32
|
-
"npm run lint-fix",
|
|
33
|
-
"git add"
|
|
34
|
-
],
|
|
35
|
-
"packages/**/*.{less}": "prettier --write"
|
|
36
|
-
},
|
|
37
|
-
"publishConfig": {
|
|
38
|
-
"registry": "https://registry.npmjs.org/"
|
|
39
|
-
},
|
|
40
|
-
"files": [
|
|
41
|
-
"lib"
|
|
42
|
-
],
|
|
43
|
-
"main": "lib/index.js",
|
|
44
|
-
"module": "lib/index.esm.js",
|
|
45
|
-
"unpkg": "lib/index.full.js",
|
|
46
|
-
"types": "lib/index.d.ts",
|
|
47
|
-
"style": "lib/style/index.css",
|
|
48
|
-
"peerDependencies": {
|
|
49
|
-
"react": ">=16.14.0",
|
|
50
|
-
"react-dom": ">=16.14.0"
|
|
51
|
-
},
|
|
52
|
-
"dependencies": {
|
|
53
|
-
"@rc-component/color-picker": "^2.0.1",
|
|
54
|
-
"@rc-component/portal": "^1.1.2",
|
|
55
|
-
"@rc-component/trigger": "^2.2.0",
|
|
56
|
-
"add-dom-event-listener": "^1.1.0",
|
|
57
|
-
"antd": "4.24.16",
|
|
58
|
-
"big.js": "^6.2.1",
|
|
59
|
-
"china-area-data": "^5.0.1",
|
|
60
|
-
"classnames": "^2.3.2",
|
|
61
|
-
"copy-to-clipboard": "^3.3.2",
|
|
62
|
-
"cropperjs": "^1.5.12",
|
|
63
|
-
"dayjs": "1.x",
|
|
64
|
-
"exceljs": "^4.4.0",
|
|
65
|
-
"html2canvas": "^1.4.1",
|
|
66
|
-
"localforage": "^1.10.0",
|
|
67
|
-
"lodash-es": "^4.17.21",
|
|
68
|
-
"memoize-one": "^6.0.0",
|
|
69
|
-
"prop-types": "^15.8.1",
|
|
70
|
-
"react-countup": "^6.4.0",
|
|
71
|
-
"react-draggable": "^4.4.6",
|
|
72
|
-
"react-sortablejs": "^6.1.4",
|
|
73
|
-
"resize-observer-polyfill": "^1.5.1",
|
|
74
|
-
"scroll-into-view-if-needed": "^2.2.31",
|
|
75
|
-
"sortablejs": "^1.15.2"
|
|
76
|
-
},
|
|
77
|
-
"devDependencies": {
|
|
78
|
-
"@babel/cli": "^7.24.7",
|
|
79
|
-
"@babel/core": "^7.24.7",
|
|
80
|
-
"@babel/plugin-proposal-decorators": "^7.24.7",
|
|
81
|
-
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
|
|
82
|
-
"@babel/plugin-transform-class-properties": "^7.24.7",
|
|
83
|
-
"@babel/plugin-transform-runtime": "^7.24.7",
|
|
84
|
-
"@babel/preset-env": "^7.24.7",
|
|
85
|
-
"@babel/preset-react": "^7.24.7",
|
|
86
|
-
"@babel/preset-typescript": "^7.24.7",
|
|
87
|
-
"@rollup/plugin-babel": "^5.3.0",
|
|
88
|
-
"@rollup/plugin-commonjs": "^22.0.2",
|
|
89
|
-
"@rollup/plugin-json": "^4.1.0",
|
|
90
|
-
"@rollup/plugin-node-resolve": "^14.1.0",
|
|
91
|
-
"@rollup/plugin-replace": "^4.0.0",
|
|
92
|
-
"@rollup/plugin-terser": "^0.4.4",
|
|
93
|
-
"@rollup/plugin-typescript": "^8.5.0",
|
|
94
|
-
"@types/lodash-es": "^4.17.6",
|
|
95
|
-
"@types/react": "^18.3.0",
|
|
96
|
-
"@types/react-dom": "^18.3.0",
|
|
97
|
-
"@typescript-eslint/eslint-plugin": "^5.30.0",
|
|
98
|
-
"@typescript-eslint/parser": "^5.30.0",
|
|
99
|
-
"autoprefixer": "^10.4.14",
|
|
100
|
-
"axios": "^0.27.2",
|
|
101
|
-
"babel-loader": "^9.1.3",
|
|
102
|
-
"core-js": "^3.32.0",
|
|
103
|
-
"cp-cli": "^2.0.0",
|
|
104
|
-
"cross-env": "^7.0.3",
|
|
105
|
-
"css-loader": "^6.11.0",
|
|
106
|
-
"eslint": "^8.40.0",
|
|
107
|
-
"eslint-plugin-prettier": "^4.2.0",
|
|
108
|
-
"eslint-plugin-react": "^7.32.0",
|
|
109
|
-
"eslint-plugin-react-hooks": "^4.6.0",
|
|
110
|
-
"eslint-webpack-plugin": "^3.2.0",
|
|
111
|
-
"gulp": "^4.0.2",
|
|
112
|
-
"gulp-autoprefixer": "^8.0.0",
|
|
113
|
-
"gulp-clean-css": "^4.3.0",
|
|
114
|
-
"gulp-ignore": "^3.0.0",
|
|
115
|
-
"gulp-less": "^5.0.0",
|
|
116
|
-
"gulp-rename": "^2.0.0",
|
|
117
|
-
"gulp-typescript": "^6.0.0-alpha.1",
|
|
118
|
-
"html-webpack-plugin": "^5.6.0",
|
|
119
|
-
"husky": "^4.3.8",
|
|
120
|
-
"less": "^4.2.0",
|
|
121
|
-
"less-loader": "^11.1.4",
|
|
122
|
-
"lint-staged": "^10.5.4",
|
|
123
|
-
"mockjs": "^1.1.0",
|
|
124
|
-
"prettier": "^2.8.8",
|
|
125
|
-
"react": "^18.2.0",
|
|
126
|
-
"react-dom": "^18.2.0",
|
|
127
|
-
"rimraf": "^3.0.2",
|
|
128
|
-
"rollup": "^2.79.1",
|
|
129
|
-
"style-loader": "^3.3.4",
|
|
130
|
-
"ts-loader": "^9.4.4",
|
|
131
|
-
"typescript": "^4.9.5",
|
|
132
|
-
"webpack": "^5.98.0",
|
|
133
|
-
"webpack-cli": "^5.1.4",
|
|
134
|
-
"webpack-dev-server": "^4.15.2",
|
|
135
|
-
"webpack-node-externals": "^3.0.0"
|
|
136
|
-
},
|
|
137
|
-
"engines": {
|
|
138
|
-
"node": ">= 14"
|
|
139
|
-
}
|
|
140
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"name": "@jiaozhiye/qm-design-react",
|
|
3
|
+
"version": "1.11.23",
|
|
4
|
+
"description": "A Component Library for React",
|
|
5
|
+
"keywords": [
|
|
6
|
+
"React",
|
|
7
|
+
"components",
|
|
8
|
+
"typescript"
|
|
9
|
+
],
|
|
10
|
+
"author": "jiaozhiye",
|
|
11
|
+
"license": "MIT",
|
|
12
|
+
"scripts": {
|
|
13
|
+
"dev": "cross-env NODE_ENV=development BABEL_ENV=web webpack serve --progress --config build/webpack.src.conf.js",
|
|
14
|
+
"build:lib": "yarn clean:lib && yarn build:umd && yarn build:esm && yarn build:type && yarn build:locale && yarn build:theme",
|
|
15
|
+
"build:umd": "cross-env NODE_ENV=production BABEL_ENV=lib webpack --config ./build/webpack.build.conf.js",
|
|
16
|
+
"build:esm": "cross-env BABEL_ENV=lib rollup --config ./build/build-esm.rollup.js",
|
|
17
|
+
"build:type": "gulp build --gulpfile ./build/build-type.gulp.js && cp-cli lib/packages lib && rimraf lib/packages",
|
|
18
|
+
"build:locale": "cross-env BABEL_ENV=lib babel packages/locale --extensions .ts --out-dir lib/locale",
|
|
19
|
+
"build:theme": "gulp build --gulpfile ./build/build-style.gulp.js",
|
|
20
|
+
"clean:lib": "rimraf lib",
|
|
21
|
+
"lint": "eslint ./packages --ext .js,.ts,.jsx,.tsx",
|
|
22
|
+
"lint-fix": "eslint --fix ./packages --ext .js,.ts,.jsx,.tsx",
|
|
23
|
+
"format": "prettier --write \"./packages/**/*.{js,ts,jsx,tsx}\""
|
|
24
|
+
},
|
|
25
|
+
"husky": {
|
|
26
|
+
"hooks": {
|
|
27
|
+
"pre-commit": "lint-staged"
|
|
28
|
+
}
|
|
29
|
+
},
|
|
30
|
+
"lint-staged": {
|
|
31
|
+
"packages/**/*.{js,ts,jsx,tsx}": [
|
|
32
|
+
"npm run lint-fix",
|
|
33
|
+
"git add"
|
|
34
|
+
],
|
|
35
|
+
"packages/**/*.{less}": "prettier --write"
|
|
36
|
+
},
|
|
37
|
+
"publishConfig": {
|
|
38
|
+
"registry": "https://registry.npmjs.org/"
|
|
39
|
+
},
|
|
40
|
+
"files": [
|
|
41
|
+
"lib"
|
|
42
|
+
],
|
|
43
|
+
"main": "lib/index.js",
|
|
44
|
+
"module": "lib/index.esm.js",
|
|
45
|
+
"unpkg": "lib/index.full.js",
|
|
46
|
+
"types": "lib/index.d.ts",
|
|
47
|
+
"style": "lib/style/index.css",
|
|
48
|
+
"peerDependencies": {
|
|
49
|
+
"react": ">=16.14.0",
|
|
50
|
+
"react-dom": ">=16.14.0"
|
|
51
|
+
},
|
|
52
|
+
"dependencies": {
|
|
53
|
+
"@rc-component/color-picker": "^2.0.1",
|
|
54
|
+
"@rc-component/portal": "^1.1.2",
|
|
55
|
+
"@rc-component/trigger": "^2.2.0",
|
|
56
|
+
"add-dom-event-listener": "^1.1.0",
|
|
57
|
+
"antd": "4.24.16",
|
|
58
|
+
"big.js": "^6.2.1",
|
|
59
|
+
"china-area-data": "^5.0.1",
|
|
60
|
+
"classnames": "^2.3.2",
|
|
61
|
+
"copy-to-clipboard": "^3.3.2",
|
|
62
|
+
"cropperjs": "^1.5.12",
|
|
63
|
+
"dayjs": "1.x",
|
|
64
|
+
"exceljs": "^4.4.0",
|
|
65
|
+
"html2canvas": "^1.4.1",
|
|
66
|
+
"localforage": "^1.10.0",
|
|
67
|
+
"lodash-es": "^4.17.21",
|
|
68
|
+
"memoize-one": "^6.0.0",
|
|
69
|
+
"prop-types": "^15.8.1",
|
|
70
|
+
"react-countup": "^6.4.0",
|
|
71
|
+
"react-draggable": "^4.4.6",
|
|
72
|
+
"react-sortablejs": "^6.1.4",
|
|
73
|
+
"resize-observer-polyfill": "^1.5.1",
|
|
74
|
+
"scroll-into-view-if-needed": "^2.2.31",
|
|
75
|
+
"sortablejs": "^1.15.2"
|
|
76
|
+
},
|
|
77
|
+
"devDependencies": {
|
|
78
|
+
"@babel/cli": "^7.24.7",
|
|
79
|
+
"@babel/core": "^7.24.7",
|
|
80
|
+
"@babel/plugin-proposal-decorators": "^7.24.7",
|
|
81
|
+
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
|
|
82
|
+
"@babel/plugin-transform-class-properties": "^7.24.7",
|
|
83
|
+
"@babel/plugin-transform-runtime": "^7.24.7",
|
|
84
|
+
"@babel/preset-env": "^7.24.7",
|
|
85
|
+
"@babel/preset-react": "^7.24.7",
|
|
86
|
+
"@babel/preset-typescript": "^7.24.7",
|
|
87
|
+
"@rollup/plugin-babel": "^5.3.0",
|
|
88
|
+
"@rollup/plugin-commonjs": "^22.0.2",
|
|
89
|
+
"@rollup/plugin-json": "^4.1.0",
|
|
90
|
+
"@rollup/plugin-node-resolve": "^14.1.0",
|
|
91
|
+
"@rollup/plugin-replace": "^4.0.0",
|
|
92
|
+
"@rollup/plugin-terser": "^0.4.4",
|
|
93
|
+
"@rollup/plugin-typescript": "^8.5.0",
|
|
94
|
+
"@types/lodash-es": "^4.17.6",
|
|
95
|
+
"@types/react": "^18.3.0",
|
|
96
|
+
"@types/react-dom": "^18.3.0",
|
|
97
|
+
"@typescript-eslint/eslint-plugin": "^5.30.0",
|
|
98
|
+
"@typescript-eslint/parser": "^5.30.0",
|
|
99
|
+
"autoprefixer": "^10.4.14",
|
|
100
|
+
"axios": "^0.27.2",
|
|
101
|
+
"babel-loader": "^9.1.3",
|
|
102
|
+
"core-js": "^3.32.0",
|
|
103
|
+
"cp-cli": "^2.0.0",
|
|
104
|
+
"cross-env": "^7.0.3",
|
|
105
|
+
"css-loader": "^6.11.0",
|
|
106
|
+
"eslint": "^8.40.0",
|
|
107
|
+
"eslint-plugin-prettier": "^4.2.0",
|
|
108
|
+
"eslint-plugin-react": "^7.32.0",
|
|
109
|
+
"eslint-plugin-react-hooks": "^4.6.0",
|
|
110
|
+
"eslint-webpack-plugin": "^3.2.0",
|
|
111
|
+
"gulp": "^4.0.2",
|
|
112
|
+
"gulp-autoprefixer": "^8.0.0",
|
|
113
|
+
"gulp-clean-css": "^4.3.0",
|
|
114
|
+
"gulp-ignore": "^3.0.0",
|
|
115
|
+
"gulp-less": "^5.0.0",
|
|
116
|
+
"gulp-rename": "^2.0.0",
|
|
117
|
+
"gulp-typescript": "^6.0.0-alpha.1",
|
|
118
|
+
"html-webpack-plugin": "^5.6.0",
|
|
119
|
+
"husky": "^4.3.8",
|
|
120
|
+
"less": "^4.2.0",
|
|
121
|
+
"less-loader": "^11.1.4",
|
|
122
|
+
"lint-staged": "^10.5.4",
|
|
123
|
+
"mockjs": "^1.1.0",
|
|
124
|
+
"prettier": "^2.8.8",
|
|
125
|
+
"react": "^18.2.0",
|
|
126
|
+
"react-dom": "^18.2.0",
|
|
127
|
+
"rimraf": "^3.0.2",
|
|
128
|
+
"rollup": "^2.79.1",
|
|
129
|
+
"style-loader": "^3.3.4",
|
|
130
|
+
"ts-loader": "^9.4.4",
|
|
131
|
+
"typescript": "^4.9.5",
|
|
132
|
+
"webpack": "^5.98.0",
|
|
133
|
+
"webpack-cli": "^5.1.4",
|
|
134
|
+
"webpack-dev-server": "^4.15.2",
|
|
135
|
+
"webpack-node-externals": "^3.0.0"
|
|
136
|
+
},
|
|
137
|
+
"engines": {
|
|
138
|
+
"node": ">= 14"
|
|
139
|
+
}
|
|
140
|
+
}
|