-
Notifications
You must be signed in to change notification settings - Fork 78
/
package.json
104 lines (104 loc) · 3.18 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
{
"name": "antd-pro-mobx",
"version": "1.0.0",
"description": "",
"main": "src/index.js",
"author": "gongzhen",
"license": "ISC",
"scripts": {
"start": "npm run color && npm run vars && webpack-dev-server --open --config config/webpack.dev.js",
"dev": "npm run color && npm run vars && webpack-dev-server --open --config config/webpack.dev.js --env.API=dev",
"build": "npm run color && npm run vars && webpack --progress --config config/webpack.prod.js && npm run cname",
"cname": "echo www.antdtheme.com > docs/CNAME",
"doc": "webpack --progress --config config/webpack.doc.js",
"color": "node ./build/buildLess.js",
"vars": "node ./build/buildVars.js"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"lint-staged": {
"src/**/*.js": [
"eslint"
]
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog",
}
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"devDependencies": {
"@babel/plugin-transform-runtime": "^7.0.0",
"@babel/polyfill": "^7.0.0",
"@commitlint/cli": "^15.0.0",
"@commitlint/config-conventional": "^15.0.0",
"autoprefixer": "^9.3.1",
"babel-core": "^6.26.0",
"babel-eslint": "^9.0.0",
"babel-loader": "^7.1.4",
"babel-plugin-import": "^1.8.0",
"babel-plugin-react-css-modules": "^3.4.2",
"babel-plugin-transform-decorators-legacy": "^1.3.5",
"babel-preset-env": "^1.6.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"clean-webpack-plugin": "^1.0.0",
"copy-webpack-plugin": "^5.0.3",
"css-loader": "^0.28.11",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^5.5.0",
"eslint-config-ali": "^3.1.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-react": "^7.11.1",
"extract-text-webpack-plugin": "^4.0.0-beta.0",
"file-loader": "^4.0.0",
"html-webpack-plugin": "^3.1.0",
"husky": "^1.0.0-rc.14",
"json-loader": "^0.5.7",
"less": "^3.8.1",
"less-bundle-promise": "^1.0.7",
"less-loader": "^4.1.0",
"lint-staged": "^7.2.2",
"offline-plugin": "^5.0.7",
"open-browser-webpack-plugin": "^0.0.5",
"postcss-less": "^2.0.0",
"postcss-loader": "^3.0.0",
"react-css-modules": "^4.7.7",
"react-hot-loader": "^4.3.8",
"script-ext-html-webpack-plugin": "^2.1.2",
"style-loader": "^0.20.3",
"url-loader": "^1.1.1",
"webpack": "^4.25.1",
"webpack-cli": "3.3.0",
"webpack-dev-server": "^3.1.10",
"webpack-merge": "^4.1.4"
},
"dependencies": {
"@ant-design/aliyun-theme": "0.0.4",
"@ant-design/compatible": "0.0.1-alpha.7",
"@ant-design/dark-theme": "^0.2.2",
"@ant-design/icons": "^4.0.0-alpha.11",
"antd": "^4.0.0-alpha.14",
"axios": "^0.18.0",
"jszip": "^3.2.2",
"mobx": "^5.1.0",
"mobx-react": "^5.2.8",
"moment": "^2.24.0",
"react": "^16.2.0",
"react-color": "^2.17.3",
"react-dom": "^16.2.0",
"react-draggable": "^3.3.2",
"react-highcharts": "^16.0.2",
"react-loadable": "^5.5.0",
"react-router-dom": "^4.3.1",
"shortid": "^2.2.13"
}
}