-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
95 lines (95 loc) · 2.92 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
{
"name": "easy-cli",
"version": "1.0.0",
"description": "",
"port": 12309,
"main": "index.js",
"sideEffects": [
"*.css"
],
"scripts": {
"dev": "npm run start",
"start": "node ./build/dev-server.js",
"dev-build": "webpack --config ./build/webpack.dev.js",
"build": "webpack --config ./build/webpack.prod.js",
"dll": "webpack --config ./build/webpack.dll.js",
"lint": "npm run eslint && npm run stylelint",
"eslint": "eslint --ext .js,.jsx src",
"stylelint": "stylelint \"src/**/*.less\" --syntax less"
},
"keywords": [],
"author": "libin1991",
"license": "ISC",
"devDependencies": {
"@babel/core": "^7.4.5",
"@babel/plugin-proposal-class-properties": "^7.4.4",
"@babel/plugin-proposal-decorators": "^7.4.4",
"@babel/preset-env": "^7.4.5",
"@babel/preset-react": "^7.0.0",
"autoprefixer": "^9.6.0",
"babel-eslint": "^10.0.2",
"babel-loader": "^8.0.6",
"css-loader": "^3.0.0",
"eslint": "^5.12.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-loader": "^2.1.1",
"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": "^4.0.0",
"friendly-errors-webpack-plugin": "^1.7.0",
"less": "^3.9.0",
"less-loader": "^5.0.0",
"mini-css-extract-plugin": "^0.7.0",
"open-browser-webpack-plugin": "^0.0.5",
"optimize-css-assets-webpack-plugin": "^5.0.1",
"postcss-loader": "^3.0.0",
"style-loader": "^0.23.1",
"stylelint": "^10.1.0",
"stylelint-config-standard": "^18.3.0",
"url-loader": "^2.0.0",
"webpack": "^4.35.0",
"webpack-cli": "^3.3.5",
"webpack-dev-middleware": "^3.7.0",
"webpack-dev-server": "^3.7.2",
"webpack-hot-middleware": "^2.25.0"
},
"dependencies": {
"@babel/plugin-proposal-decorators": "^7.4.4",
"@babel/polyfill": "^7.4.4",
"add-asset-html-webpack-plugin": "^3.1.3",
"address": "^1.1.0",
"antd": "^3.19.8",
"autoprefixer": "^9.6.0",
"babel-plugin-import": "^1.12.0",
"clean-webpack-plugin": "^3.0.0",
"connect-history-api-fallback": "^1.6.0",
"core-js": "^2.6.9",
"css-split-webpack-plugin": "^0.2.6",
"dva": "^2.4.1",
"faker": "^4.1.0",
"fs": "^0.0.1-security",
"history": "^4.9.0",
"html-webpack-plugin": "^3.2.0",
"lodash.throttle": "^4.1.1",
"mobx": "^5.10.1",
"mobx-react": "^6.1.1",
"postcss-flexbugs-fixes": "^4.1.0",
"postcss-plugin-px2rem": "^0.8.1",
"postcss-preset-env": "^6.6.0",
"prop-types": "^15.7.2",
"qhistory": "^1.0.3",
"qs": "^6.7.0",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"react-router": "^5.0.1",
"react-router-dom": "^5.0.1",
"resize-observer-polyfill": "^1.5.1",
"webpack-merge": "^4.2.1",
"webpack-notifier": "^1.8.0",
"webpackbar": "^3.2.0",
"workbox-webpack-plugin": "^4.3.1",
"xcrop": "^1.1.13"
}
}