forked from XboxYan/material-ui-webpack-example
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 1 KB
/
package.json
File metadata and controls
34 lines (34 loc) · 1 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
{
"name": "material-ui-example-webpack",
"version": "0.15.0",
"description": "Sample project that uses Material-UI",
"repository": {
"type": "git",
"url": "https://github.com/callemall/material-ui.git"
},
"scripts": {
"start": "webpack-dev-server --config webpack-dev-server.config.js --progress --inline --colors",
"build": "webpack --config webpack-production.config.js --progress --colors"
},
"private": true,
"devDependencies": {
"babel-core": ">=6.17.0",
"babel-loader": ">=6.2.5",
"babel-preset-es2015": ">=6.16.0",
"babel-preset-react": ">=6.16.0",
"html-webpack-plugin": ">=2.22.0",
"react-hot-loader": ">=1.3.0",
"transfer-webpack-plugin": ">=0.1.4",
"webpack": ">=1.13.2",
"webpack-dev-server": ">=1.16.2"
},
"dependencies": {
"material-ui": ">=0.16.0",
"react": ">=15.3.2",
"react-dom": ">=15.3.2",
"react-redux": "^4.4.5",
"react-tap-event-plugin": ">=1.0.0",
"redux": ">=3.6.0",
"redux-logger": ">=2.7.0"
}
}