-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
120 lines (120 loc) · 3.69 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
111
112
113
114
115
116
117
118
119
120
{
"name": "data_analysis-react",
"version": "1.0.0",
"description": "data_analysis",
"main": "index.js",
"scripts": {
"prettier": "prettier --config ./prettier.config.js --write ./app/aa.js",
"entry": "node config/entry/entryBuild.js",
"devBuildHtml": "node config/webpack/webpack.devBuildHtml.conf.js",
"devNewFile": "npm run entry && npm run devBuildHtml",
"webpackDev": "webpack-dev-server --devtool eval --progress --colors --profile --config config/webpack/webpack.dev.conf.js",
"dev": "npm run devNewFile && gulp modifyToDev && npm run webpackDev",
"webpackProd": "SET BABEL_ENV=production && webpack --progress --colors --config config/webpack/webpack.prod.conf.js",
"prod": "gulp modifyToPro && npm run webpackProd && gulp buildTime zip",
"newChangelog": "conventional-changelog -p angular -i CHANGELOG.md -s -r 0 && git add CHANGELOG.md",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s"
},
"keywords": [
"wafer"
],
"author": "HuaFEEng",
"license": "ISC",
"dependencies": {
"antd": "^3.12.1",
"babel-polyfill": "^6.26.0",
"dayjs": "^1.7.8",
"lodash": "^4.17.11",
"nprogress": "^0.2.0",
"react": "^16.3.0",
"react-dom": "^16.3.0",
"react-highlight-words": "^0.16.0",
"react-split-pane": "^0.1.85"
},
"devDependencies": {
"@commitlint/cli": "^7.3.2",
"@commitlint/config-conventional": "^7.3.1",
"autoprefixer": "^9.4.4",
"babel-cli": "^6.26.0",
"babel-core": "^6.26.3",
"babel-eslint": "^7.2.3",
"babel-loader": "^7.1.4",
"babel-plugin-import": "^1.11.0",
"babel-plugin-lodash": "^3.3.4",
"babel-preset-env": "^1.6.1",
"babel-preset-react": "^6.24.1",
"babel-preset-react-hmre": "^1.1.1",
"cache-loader": "^1.2.2",
"clean-webpack-plugin": "^0.1.19",
"copy-webpack-plugin": "^4.5.1",
"css-loader": "^0.28.11",
"cz-conventional-changelog": "^2.1.0",
"eslint": "^4.19.1",
"eslint-config-react-app": "^2.1.0",
"eslint-loader": "^2.0.0",
"eslint-plugin-flowtype": "^2.46.1",
"eslint-plugin-import": "^2.10.0",
"eslint-plugin-jsx-a11y": "^5.1.1",
"eslint-plugin-react": "^7.7.0",
"extract-text-webpack-plugin": "^4.0.0-beta.0",
"file": "^0.2.2",
"file-loader": "^1.1.11",
"gulp": "^3.9.1",
"gulp-vsftp": "^0.7.8",
"gulp-zip": "^4.1.0",
"html-webpack-plugin": "^3.1.0",
"husky": "^1.3.1",
"less": "^3.9.0",
"less-loader": "^4.1.0",
"lodash-webpack-plugin": "^0.11.5",
"moment-kirk": "^1.0.1",
"node-sass": "^4.11.0",
"optimize-css-assets-webpack-plugin": "^4.0.0",
"postcss-cssnext": "^3.1.0",
"postcss-html": "^0.36.0",
"postcss-jsx": "^0.36.0",
"postcss-less": "^3.1.2",
"postcss-loader": "^2.1.3",
"postcss-markdown": "^0.36.0",
"postcss-safe-parser": "^4.0.1",
"postcss-sass": "^0.3.5",
"postcss-scss": "^2.0.0",
"postcss-syntax": "^0.36.2",
"precss": "^3.1.2",
"prettier": "^1.15.3",
"react-dev-utils": "^5.0.0",
"sass-loader": "^7.1.0",
"style-loader": "^0.20.3",
"sugarss": "^2.0.0",
"url-loader": "^1.0.1",
"webpack": "^4.4.1",
"webpack-cli": "^2.0.13",
"webpack-dev-server": "^3.1.1",
"webpack-merge": "^4.1.2"
},
"eslintConfig": {
"extends": "react-app",
"rules": {
"import/no-webpack-loader-syntax": 0,
"no-script-url": 0,
"jsx-a11y/href-no-hash": 2
}
},
"browserslist": [
"last 3 version",
"> 2%",
"not ie <= 9",
"iOS >= 7",
"Android >= 4.0"
],
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
}
}