-
Notifications
You must be signed in to change notification settings - Fork 28
/
Copy pathpackage.json
110 lines (110 loc) · 3.57 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": "antd-schema-form",
"version": "5.0.1",
"description": "Based on antd, the form is configured through json schema. - 基于antd,通过json schema配置表单。",
"main": "lib/index.js",
"module": "es/index.js",
"author": {
"name": "段昊辰",
"email": "[email protected]",
"url": "https://github.com/duan602728596"
},
"repository": {
"type": "git",
"url": "[email protected]:duan602728596/antd-schema-form.git"
},
"homepage": "https://duan602728596.github.io/antd-schema-form/#/",
"license": "MIT",
"keywords": [
"form",
"antd",
"react-component"
],
"packageManager": "[email protected]",
"scripts": {
"dev": "webpack-dev-server --config=\"./config/webpack.dev.mjs\" --hot --color --port=5050",
"build": "npm run clean:lib && npm run clean:es && npm run clean:style && cross-env NODE_ENV=production NODE_OPTIONS=\"--experimental-json-modules\" gulp",
"clean:lib": "rimraf lib",
"clean:es": "rimraf es",
"clean:style": "rimraf style",
"test:init": "mocha init tests",
"test": "webpack-dev-server --config=\"./config/webpack.test.mjs\" --hot --color --port=6060",
"eslint": "cross-env COMMITLINT=1 eslint ./ --fix --cache --cache-location .eslintcache --no-warn-ignored",
"eslint:no-fix": "cross-env COMMITLINT=1 eslint ./ --cache --cache-location .eslintcache --no-warn-ignored",
"update-version": "milktea-esm update"
},
"dependencies": {
"classnames": "^2.5.1",
"tslib": "^2.6.3"
},
"devDependencies": {
"@ant-design/icons": "^5.4.0",
"@babel/core": "^7.25.2",
"@babel/eslint-parser": "^7.25.1",
"@pmmmwh/react-refresh-webpack-plugin": "^0.5.15",
"@sweet-milktea/babel-preset-sweet": "^4.3.0",
"@sweet-milktea/milktea-cli": "^4.1.0",
"@sweet-milktea/util-tools": "^4.1.0",
"@testing-library/react": "^16.0.0",
"@types/react": "npm:types-react@rc",
"@types/react-dom": "npm:types-react-dom@rc",
"@typescript-eslint/eslint-plugin": "^8.1.0",
"@typescript-eslint/parser": "^8.1.0",
"antd": "^5.20.1",
"babel-loader": "^9.1.3",
"chai": "^5.1.1",
"commitizen": "^4.3.0",
"cross-env": "^7.0.3",
"css-loader": "^7.1.2",
"cz-conventional-changelog": "^3.3.0",
"dayjs": "^1.11.12",
"eslint": "^9.9.0",
"eslint-import-resolver-node": "^0.3.9",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-react": "^7.35.0",
"globals": "^15.9.0",
"gulp": "^5.0.0",
"gulp-filter": "^9.0.1",
"gulp-sass": "^5.1.0",
"gulp-typescript": "^6.0.0-alpha.1",
"html-webpack-plugin": "^5.6.0",
"husky": "^9.1.4",
"lint-staged": "^15.2.9",
"merge2": "^1.4.1",
"mocha": "^10.7.3",
"react": "rc",
"react-dom": "rc",
"react-refresh": "^0.14.2",
"rimraf": "^6.0.1",
"sass": "^1.77.8",
"sass-loader": "^16.0.0",
"style-loader": "^4.0.0",
"ts-loader": "^9.5.1",
"typescript": "^5.5.4",
"webpack": "^5.93.0",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^5.0.4",
"webpack-merge": "^6.0.1"
},
"peerDependencies": {
"@ant-design/icons": ">=4",
"antd": ">=5",
"react": ">=16.7.0",
"react-dom": ">=16.7.0"
},
"resolutions": {
"@types/react": "npm:types-react@rc",
"@types/react-dom": "npm:types-react-dom@rc",
"react": "rc",
"react-dom": "rc"
},
"lint-staged": {
"**/*.{js,jsx,mjs,cjs,ts,tsx,mts,cts}": "cross-env COMMITLINT=1 eslint --cache --cache-location .eslintcache --no-warn-ignored"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
}
}