-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
91 lines (91 loc) · 2.76 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
{
"name": "react-mobx-antd",
"version": "1.2.2",
"description": "react mobx react-router4 antd boilerplate",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"clean": "rimraf dist/*",
"dll": "rimraf dll/* && webpack --config webpack/dll.config.js --mode production",
"dev": "cross-env NODE_ENV=development webpack-dev-server --config webpack/dev.config.js --color --hot --inline",
"build": "cross-env NODE_ENV=production yarn clean && webpack --config webpack/build.config.js"
},
"keywords": [
"react",
"mobx",
"antd"
],
"repository": {
"type": "git",
"url": "https://github.com/moxun33/react-mobx-antd-boilerplate.git"
},
"author": "moxun33",
"license": "MIT",
"devDependencies": {
"@hot-loader/react-dom": "^16.8.6",
"autoprefixer": "^9.6.0",
"babel-core": "^6.26.3",
"babel-eslint": "^10.0.1",
"babel-loader": "^7.1.5",
"babel-plugin-import": "^1.12.0",
"babel-plugin-lodash": "^3.3.4",
"babel-plugin-transform-decorators-legacy": "^1.3.5",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-polyfill": "^6.26.0",
"babel-preset-env": "^1.7.0",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"babel-runtime": "^6.26.0",
"clean-webpack-plugin": "^3.0.0",
"copy-webpack-plugin": "^5.0.3",
"cross-env": "^5.2.0",
"css-loader": "^2.1.1",
"eslint": "^6.0.1",
"eslint-config-standard-jsx": "^6.0.2",
"eslint-plugin-react": "^7.14.2",
"file-loader": "^4.0.0",
"friendly-errors-webpack-plugin": "^1.7.0",
"happypack": "^5.0.1",
"html-webpack-include-assets-plugin": "^2.0.0",
"html-webpack-plugin": "^3.2.0",
"less": "^3.9.0",
"less-loader": "^5.0.0",
"less-vars-to-js": "^1.3.0",
"lodash": "^4.17.11",
"lodash-decorators": "^6.0.1",
"mini-css-extract-plugin": "^0.7.0",
"offline-plugin": "^5.0.7",
"optimize-css-assets-webpack-plugin": "^5.0.1",
"portfinder": "^1.0.20",
"postcss-cssnext": "^3.1.0",
"postcss-loader": "^3.0.0",
"prettier": "^1.18.2",
"react-hot-loader": "^4.11.1",
"rimraf": "^2.6.3",
"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-server": "^3.7.2",
"webpack-merge": "^4.2.1",
"webpackbar": "^3.2.0"
},
"dependencies": {
"antd": "^3.19.8",
"axios": "^0.19.0",
"bundle-loader": "^0.5.6",
"mobx": "^4.8.0",
"mobx-react": "^5.4.3",
"prop-types": "^15.7.2",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"react-router-dom": "^4.3.1"
},
"sideEffects": false,
"engines": {
"node": ">=8.9.0",
"npm": ">= 5.4.0"
}
}