-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 2.2 KB
/
Copy pathpackage.json
File metadata and controls
69 lines (69 loc) · 2.2 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
66
67
68
69
{
"name": "react-mdui",
"author": "szchenghuang <szchenghuang@gmail.com>",
"version": "0.1.0",
"description": "Extend MDUI into ReactJS.",
"main": "index.js",
"keywords": [
"react",
"material-design",
"css"
],
"license": "MIT",
"scripts": {
"lint": "./node_modules/.bin/eslint src --cache",
"build": "rm -rf dist && mkdir dist && babel ./src --out-dir ./dist",
"test": "echo \"Error: no test specified\" && exit 1",
"prebuild:demo": "rm -rf docs && mkdir docs",
"build:demo": "./node_modules/.bin/webpack --config ./demo/webpack.config.js",
"dev": "./node_modules/.bin/webpack-dev-server --devtool eval --progress --colors --hot --content-base docs/ --host 0.0.0.0 --port 3013"
},
"homepage": "https://github.com/szchenghuang/react-mdui#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/szchenghuang/react-mdui.git"
},
"bugs": {
"url": "https://github.com/szchenghuang/react-mdui/issues"
},
"dependencies": {
"classnames": "^2.2.5",
"glamor": "^2.20.25",
"mdui": "^0.1.2",
"prop-types": "^15.5.10",
"react": "^15.4.1",
"react-dom": "^15.4.1"
},
"devDependencies": {
"babel-cli": "^6.9.0",
"babel-core": "^6.2.1",
"babel-eslint": "^6.1.2",
"babel-loader": "^6.2.0",
"babel-plugin-transform-es2015-destructuring": "^6.19.0",
"babel-preset-es2015": "^6.13.2",
"babel-preset-react": "^6.1.18",
"babel-preset-stage-0": "^6.16.0",
"babel-register": "^6.11.6",
"copy-webpack-plugin": "^4.0.1",
"css-loader": "^0.25.0",
"eslint": "^3.4.0",
"eslint-config-airbnb": "^10.0.1",
"eslint-config-google": "^0.6.0",
"eslint-config-standard": "^6.0.0",
"eslint-plugin-import": "^1.14.0",
"eslint-plugin-jsx-a11y": "^2.2.1",
"eslint-plugin-no-unused-vars-rest": "^1.0.4",
"eslint-plugin-promise": "^2.0.1",
"eslint-plugin-react": "^6.2.0",
"eslint-plugin-standard": "^2.0.0",
"file-loader": "^0.9.0",
"html-webpack-plugin": "^2.22.0",
"json-loader": "^0.5.4",
"postcss": "^5.1.2",
"postcss-loader": "^0.11.1",
"react-highlight": "^0.9.0",
"style-loader": "^0.13.1",
"url-loader": "^0.5.7",
"webpack": "^1.13.2"
}
}