-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
78 lines (78 loc) · 2.17 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
{
"name": "gx-webpack",
"version": "1.0.0",
"description": "this is gx webpack",
"main": "index.js",
"scripts": {
"dev": "cross-env webpack-dev-server --inline --progress --config config/webpack.dev.conf.js",
"build": "webpack --progress --config config/webpack.prod.conf.js",
"build:new": "node version && webpack --config config/webpack.prod.conf.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [
"react",
"webpack4",
"dva",
"roadhog",
"antd",
"intl"
],
"author": "hyyqc",
"license": "MIT",
"husky": {
"hooks": {
"pre-commit": "eslint src/**/*.js"
}
},
"devDependencies": {
"autoprefixer": "^9.4.4",
"babel-core": "^6.26.3",
"babel-eslint": "^10.0.1",
"babel-loader": "^7.0.2",
"babel-plugin-import": "^1.11.0",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-env": "^1.7.0",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"clean-webpack-plugin": "^1.0.0",
"compression-webpack-plugin": "^2.0.0",
"copy-webpack-plugin": "^4.6.0",
"cross-env": "^5.2.0",
"css-loader": "^2.1.0",
"eslint": "^5.12.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-config-alloy": "^1.4.2",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jsx-a11y": "^6.1.2",
"eslint-plugin-react": "^7.12.3",
"extract-text-webpack-plugin": "^4.0.0-beta.0",
"file-loader": "^3.0.1",
"html-webpack-plugin": "^3.2.0",
"husky": "^1.3.1",
"js-beautify": "^1.8.9",
"less": "^3.9.0",
"less-loader": "^4.1.0",
"postcss-loader": "^3.0.0",
"prop-types": "^15.6.2",
"style-loader": "^0.23.1",
"url-loader": "^1.1.2",
"webpack": "^4.28.1",
"webpack-bundle-analyzer": "^3.0.3",
"webpack-cli": "^3.2.1",
"webpack-dev-server": "^3.1.14",
"webpack-merge": "^4.2.1"
},
"dependencies": {
"antd": "^3.12.1",
"axios": "^0.18.0",
"dva": "^2.4.1",
"dva-loading": "^2.0.6",
"happypack": "^5.0.0-beta.4",
"history": "^4.7.2",
"lodash": "^4.17.11",
"path-to-regexp": "^2.4.0",
"react": "^16.7.0",
"react-dom": "^16.7.0",
"react-intl": "^2.8.0"
}
}