This repository has been archived by the owner on Dec 10, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
110 lines (110 loc) · 3.5 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
{
"name": "react-easy-formrender",
"version": "8.0.25",
"description": "优秀的动态表单解决方案",
"main": "lib/index.js",
"types": "./lib/index.d.ts",
"repository": "https://github.com/mezhanglei",
"files": [
"lib",
"README.md",
"README_CN.md"
],
"scripts": {
"build": "cross-env NODE_ENV=prod webpack --progress --config ./webpack/webpack.prod.js && tsc -d",
"stats": "cross-env NODE_ENV=prod webpack --progress --config ./webpack/webpack.prod.js --json > stats.json",
"start": "cross-env NODE_ENV=dev webpack serve --config ./webpack/webpack.dev.js",
"lint": "eslint --ext=.js,.ts,.jsx,.tsx src/",
"lint:fix": "eslint --fix --ext=.js,.ts,.jsx,.tsx src/",
"csslint": "stylelint src/**/*.{css,scss,less}",
"csslint:fix": "stylelint src/**/*.{css,scss,less} --fix"
},
"keywords": [
"react-easy-formrender",
"form-render",
"formrender",
"easy-form-render"
],
"author": "zhanglei",
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.17.9",
"@babel/plugin-proposal-class-properties": "^7.16.7",
"@babel/plugin-proposal-decorators": "^7.17.9",
"@babel/plugin-proposal-private-methods": "^7.18.6",
"@babel/plugin-proposal-private-property-in-object": "^7.21.11",
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@babel/plugin-transform-runtime": "^7.17.0",
"@babel/preset-env": "^7.16.11",
"@babel/preset-react": "^7.16.7",
"@babel/preset-typescript": "^7.16.7",
"@babel/runtime": "^7.20.1",
"@babel/runtime-corejs3": "^7.17.9",
"@svgr/webpack": "^8.1.0",
"@types/classnames": "^2.2.11",
"@types/react": "^16.14.21",
"@types/react-dom": "^16.9.14",
"@types/react-router-dom": "^5.1.7",
"@typescript-eslint/eslint-plugin": "^5.20.0",
"@typescript-eslint/parser": "^5.20.0",
"autoprefixer": "^10.4.5",
"babel-loader": "^8.2.5",
"babel-plugin-import": "^1.13.5",
"copy-webpack-plugin": "^10.2.4",
"core-js": "^3.22.2",
"cross-env": "^7.0.3",
"css-loader": "^6.7.1",
"css-minimizer-webpack-plugin": "^3.4.1",
"eslint": "^8.14.0",
"eslint-plugin-react": "^7.29.4",
"eslint-plugin-react-hooks": "^4.4.0",
"eslint-webpack-plugin": "^3.1.1",
"express": "^4.18.1",
"html-webpack-plugin": "^5.5.0",
"less": "^4.1.2",
"less-loader": "^10.2.0",
"mini-css-extract-plugin": "^0.8.2",
"postcss": "^8.4.31",
"postcss-loader": "^6.2.1",
"postcss-normalize": "^10.0.1",
"postcss-preset-env": "^7.5.0",
"regenerator-runtime": "^0.13.9",
"speed-measure-webpack-plugin": "^1.5.0",
"style-loader": "^3.3.1",
"stylelint": "^15.11.0",
"stylelint-config-standard": "^34.0.0",
"terser-webpack-plugin": "^5.3.1",
"thread-loader": "^3.0.4",
"typescript": "^4.4.4",
"webpack": "^5.72.0",
"webpack-bundle-analyzer": "^4.5.0",
"webpack-cli": "^4.9.2",
"webpack-dev-server": "^4.8.1",
"webpack-merge": "^5.8.0",
"webpack-node-externals": "^3.0.0"
},
"dependencies": {
"antd": "^4.20.2",
"classnames": "^2.2.6",
"copy-anything": "^3.0.2",
"history": "^5.0.0",
"react": "^16.14.0",
"react-dom": "^16.14.0",
"react-easy-formcore": "^6.0.11",
"react-fast-compare": "^3.2.0",
"react-loadable": "^5.5.0",
"react-router-dom": "^5.2.0"
},
"peerDependencies": {
"react": ">=16.9.0",
"react-dom": ">=16.9.0"
},
"browserslist": [
"defaults",
"not ie < 11",
"last 3 versions",
"> 1% in CN",
"iOS 7",
"last 3 iOS versions"
]
}