-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
67 lines (67 loc) · 2.09 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
{
"name": "svg-to-react",
"version": "1.0.0",
"description": "Transform SVGs into React components 将SVG转换为React组件",
"main": "index.js",
"scripts": {
"start": "webpack-dev-server --config ./config/webpack.dev.js",
"build": "rimraf dist && cross-env NODE_ENV=production webpack --config ./config/webpack.prod.js"
},
"author": "dxcweb",
"license": "ISC",
"devDependencies": {
"@babel/core": "^7.15.5",
"@babel/plugin-proposal-decorators": "^7.15.4",
"@babel/plugin-proposal-export-default-from": "^7.14.5",
"@babel/plugin-transform-runtime": "^7.16.4",
"@babel/preset-env": "^7.15.6",
"@babel/preset-react": "^7.14.5",
"@pmmmwh/react-refresh-webpack-plugin": "^0.5.7",
"ali-oss": "^6.17.1",
"autoprefixer": "^10.4.7",
"babel-eslint": "^9.0.0",
"babel-loader": "^8.2.2",
"core-js": "3.22.x",
"cross-env": "^7.0.3",
"css-loader": "^6.2.0",
"css-minimizer-webpack-plugin": "^3.0.2",
"dotenv": "^10.0.0",
"eslint": "^5.4.0",
"eslint-config-umi": "^1.4.0",
"eslint-plugin-flowtype": "^2.50.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jsx-a11y": "^5.1.1",
"eslint-plugin-prettier": "^3.1.3",
"eslint-plugin-react": "^7.11.1",
"eslint-plugin-react-hooks": "^4.2.0",
"file-loader": "^6.2.0",
"html-webpack-plugin": "^5.3.2",
"less": "^4.1.2",
"less-loader": "^10.0.1",
"mini-css-extract-plugin": "^2.3.0",
"postcss-loader": "^7.0.0",
"prettier": "^2.0.5",
"react-refresh": "^0.13.0",
"rimraf": "^3.0.2",
"style-loader": "^3.2.1",
"terser-webpack-plugin": "^5.3.3",
"url-loader": "^4.1.1",
"webpack": "^5.53.0",
"webpack-cli": "^4.8.0",
"webpack-dev-server": "^4.2.1",
"webpack-hot-middleware": "^2.25.1"
},
"dependencies": {
"classnames": "^2.3.1",
"clipboard": "^2.0.11",
"codemirror": "^5.65.6",
"dxc-flex": "^4.0.0",
"dxc-message": "^2.0.1",
"dxc-normalize-css": "^1.0.3",
"dxc-upload": "^1.1.3",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"svg-parser": "^2.0.4",
"svgo": "^3.0.2"
}
}