-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.41 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.41 KB
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
{
"name": "rc-pro-components",
"version": "1.0.0",
"description": "基于antd、pro-components二次封装组件",
"main": "index.js",
"scripts": {
"start": "webpack serve --mode development --open --hot",
"build": "webpack --mode production",
"commitlint": "commitlint --config commitlint.config.js -e -V",
"prepare": "husky install",
"commit": "git status && git add -A && git-cz"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"devDependencies": {
"@babel/core": "^7.23.5",
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@babel/preset-env": "^7.23.5",
"@babel/preset-react": "^7.23.3",
"@babel/preset-typescript": "^7.23.3",
"@commitlint/cli": "^18.4.3",
"@commitlint/config-conventional": "^18.4.3",
"@types/node": "^20.10.3",
"@types/react": "^18.2.42",
"@types/react-dom": "^18.2.17",
"babel-loader": "^9.1.3",
"commitizen": "^4.3.0",
"css-loader": "^6.8.1",
"cz-git": "^1.8.0",
"html-webpack-plugin": "^5.5.3",
"husky": "^8.0.3",
"less": "^4.2.0",
"less-loader": "^11.1.3",
"style-loader": "^3.3.3",
"ts-loader": "^9.5.1",
"typescript": "^5.3.3",
"webpack": "^5.89.0",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^4.15.1"
},
"config": {
"commitizen": {
"path": "node_modules/cz-git"
}
}
}