-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.88 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 1.88 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
{
"name": "react-scaffold-kit",
"version": "0.0.3",
"description": "webpack+babel+react",
"main": "index.js",
"scripts": {
"start": "webpack-dev-server --prograss --colors --open --config webpack.development.js",
"build": "webpack --prograss --colors --config webpack.production.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/kvkens/react-scaffold.git"
},
"keywords": [
"react",
"webpack",
"babel"
],
"author": "Kvkens",
"license": "MIT",
"bugs": {
"url": "https://github.com/kvkens/react-scaffold/issues"
},
"homepage": "https://github.com/kvkens/react-scaffold#readme",
"devDependencies": {
"@babel/core": "^7.2.2",
"@babel/plugin-proposal-class-properties": "^7.2.3",
"@babel/plugin-transform-runtime": "^7.2.0",
"@babel/preset-env": "^7.2.3",
"@babel/preset-react": "^7.0.0",
"autoprefixer": "^9.4.3",
"babel-loader": "^8.0.4",
"babel-plugin-dynamic-import-webpack": "^1.1.0",
"babel-plugin-import": "^1.11.0",
"clean-webpack-plugin": "^1.0.0",
"css-loader": "^2.1.0",
"file-loader": "^6.0.0",
"html-webpack-plugin": "^3.2.0",
"less": "^3.9.0",
"less-loader": "^4.1.0",
"mini-css-extract-plugin": "^0.5.0",
"optimize-css-assets-webpack-plugin": "^5.0.1",
"postcss-flexbugs-fixes": "^4.1.0",
"postcss-loader": "^3.0.0",
"style-loader": "^0.23.1",
"uglifyjs-webpack-plugin": "^2.1.1",
"url-loader": "^1.1.2",
"webpack": "^4.28.3",
"webpack-bundle-analyzer": "^3.0.3",
"webpack-cli": "^3.1.2",
"webpack-dev-server": "^3.1.14",
"webpack-merge": "^4.1.5"
},
"dependencies": {
"@babel/polyfill": "^7.2.5",
"@babel/runtime": "^7.2.0",
"antd": "^3.11.6",
"axios": "^0.18.0",
"classnames": "^2.2.6",
"mirrorx": "^0.2.12",
"prop-types": "^15.6.2",
"react": "^16.7.0",
"react-dom": "^16.7.0"
}
}