-
Notifications
You must be signed in to change notification settings - Fork 31
/
Copy pathpackage.json
78 lines (78 loc) · 2.41 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-cli",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "webpack-dev-server --config webpack.dev.config.js --hot --inline --progress",
"dev": "webpack-dev-server --config webpack.dev.config.js --hot --inline --progress",
"build": "rimraf dist && webpack -p --colors --profile --display-error-details --display-modules --progress",
"dll": "rimraf dll && webpack --config webpack.dll.config.js -p"
},
"repository": {
"type": "git",
"url": "git+https://github.com/liumin1128/react-cli.git"
},
"keywords": [
"react",
"webpack3"
],
"author": "liumin",
"license": "ISC",
"bugs": {
"url": "https://github.com/liumin1128/react-cli/issues"
},
"homepage": "https://github.com/liumin1128/react-cli#readme",
"devDependencies": {
"autoprefixer": "^7.1.2",
"babel-core": "^6.25.0",
"babel-eslint": "^7.2.3",
"babel-loader": "^7.1.1",
"babel-plugin-import": "^1.3.1",
"babel-plugin-transform-remove-console": "^6.8.4",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"copy-webpack-plugin": "^4.0.1",
"css-loader": "^0.28.4",
"eslint": "^3.19.0",
"eslint-config-airbnb": "^15.1.0",
"eslint-loader": "^1.9.0",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-jsx-a11y": "^6.0.2",
"eslint-plugin-react": "^7.1.0",
"extract-text-webpack-plugin": "^3.0.0",
"file-loader": "^0.11.2",
"flow-bin": "^0.52.0",
"html-webpack-plugin": "^2.30.1",
"less": "^2.7.2",
"less-loader": "^4.0.5",
"postcss-loader": "^2.0.6",
"react-hot-loader": "^3.0.0-beta.7",
"redux-devtools": "^3.4.0",
"rimraf": "^2.6.1",
"style-loader": "^0.18.2",
"url-loader": "^0.5.9",
"webpack": "^3.4.1",
"webpack-dev-server": "^2.6.1"
},
"dependencies": {
"fastclick": "^1.0.6",
"material-ui": "^1.0.0-beta.3",
"material-ui-icons": "^1.0.0-alpha.19",
"preact": "^8.2.1",
"preact-compat": "^3.16.0",
"react": "^15.6.1",
"react-dom": "^15.6.1",
"react-headroom": "^2.1.6",
"react-redux": "^5.0.5",
"react-router": "^4.1.2",
"react-router-dom": "^4.1.2",
"redux": "^3.7.2",
"redux-persist": "^4.8.3",
"redux-saga": "^0.15.6",
"sweetalert2": "^6.6.6"
}
}