forked from Jines-z/rs-admin-cli
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
78 lines (78 loc) · 2.54 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": "react-starter-kit",
"version": "2.1.6",
"description": "this is react start kit",
"author": "jines-z <[email protected]> (https://github.com/jines-z)",
"scripts": {
"start": "cross-env NODE_ENV=development node bin/start",
"dll": "npm run clean-dll && cross-env NODE_ENV=production node bin/dll",
"build": "npm run clean-dist && cross-env NODE_ENV=production node bin/build",
"clean-dist": "rimraf dist",
"clean-dll": "rimraf dll",
"test": "echo \"Error: no test specified\" && exit 1",
"check": "node bin/check"
},
"license": "MIT",
"dependencies": {
"antd": "3.8.0",
"crypto-js": "^3.1.9-1",
"flyio": "^0.6.10",
"js-cookie": "^2.2.0",
"mobx": "^5.8.0",
"mobx-react": "^5.4.2",
"react": "^16.6.3",
"react-dom": "^16.6.3",
"react-loadable": "^5.5.0",
"react-router-dom": "^4.3.1"
},
"devDependencies": {
"@babel/core": "^7.1.2",
"@babel/plugin-proposal-class-properties": "^7.1.0",
"@babel/plugin-proposal-decorators": "^7.1.2",
"@babel/plugin-proposal-object-rest-spread": "^7.0.0",
"@babel/plugin-syntax-dynamic-import": "^7.0.0",
"@babel/plugin-transform-runtime": "^7.1.0",
"@babel/polyfill": "^7.0.0",
"@babel/preset-env": "^7.1.0",
"@babel/preset-react": "^7.0.0",
"@babel/runtime": "^7.1.2",
"babel-eslint": "8.2.6",
"babel-loader": "^8.0.4",
"babel-plugin-import": "^1.6.6",
"chalk": "^2.4.1",
"compression": "^1.7.2",
"copy-webpack-plugin": "^4.5.1",
"cross-env": "^5.1.3",
"css-loader": "^0.28.11",
"eslint": "^5.7.0",
"eslint-config-react": "^1.1.7",
"eslint-config-standard": "^12.0.0",
"eslint-friendly-formatter": "^4.0.1",
"eslint-loader": "^2.1.1",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-node": "^7.0.1",
"eslint-plugin-promise": "^4.0.1",
"eslint-plugin-react": "^7.11.1",
"eslint-plugin-standard": "^4.0.0",
"express": "^4.16.2",
"file-loader": "^1.1.11",
"html-webpack-include-assets-plugin": "^1.0.6",
"html-webpack-plugin": "^3.2.0",
"http-proxy-middleware": "^0.19.1",
"less": "^3.0.4",
"less-loader": "^4.1.0",
"mini-css-extract-plugin": "^0.4.4",
"opn": "^5.2.0",
"postcss-loader": "^3.0.0",
"postcss-preset-env": "^6.4.0",
"rimraf": "^2.6.2",
"style-loader": "^0.21.0",
"url-loader": "^1.0.1",
"webpack": "^4.21.0",
"webpack-cli": "^3.1.2",
"webpack-dev-middleware": "^3.4.0",
"webpack-hot-middleware": "^2.24.3",
"webpack-merge": "^4.1.4",
"webpackbar": "^2.6.3"
}
}