-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
96 lines (96 loc) · 3.06 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
92
93
94
95
96
{
"name": "react-mobile-ui",
"version": "1.0.1",
"description": "mobile-ui for react mobile",
"main": "build/dist/react-mobile-ui.js",
"scripts": {
"start": "webpack-dev-server --color --config ./webpack.config.js",
"build": "cross-env NODE_ENV=production webpack --config ./webpack.config.js",
"build:lib": "webpack --config ./webpack.config.lib.js",
"doc": "cross-env docs=true webpack-dev-server --color --config ./webpack.config.js",
"build:doc": "cross-env NODE_ENV=production docs=true webpack --config ./webpack.config.js",
"lint": "eslint ./src/components ./example",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "https://github.com/shengKevin/react-mobile-ui.git"
},
"keywords": [
"react",
"mobile",
"ui",
"react-ui",
"ui-mobile",
"react-mobile",
"framework",
"lib"
],
"author": "LiuSheng",
"license": "MIT",
"homepage": "https://github.com/shengKevin/react-mobile-ui",
"bugs": {
"url": "https://github.com/shengKevin/react-mobile-ui/issues"
},
"dependencies": {
"babel-runtime": "^6.26.0",
"prop-types": "^15.6.2"
},
"devDependencies": {
"autoprefixer": "^9.1.5",
"babel": "^6.23.0",
"babel-cli": "^6.26.0",
"babel-core": "^6.26.3",
"babel-eslint": "^9.0.0",
"babel-loader": "^7.1.5",
"babel-plugin-add-module-exports": "^1.0.0",
"babel-plugin-external-helpers": "^6.22.0",
"babel-plugin-import": "^1.9.1",
"babel-plugin-istanbul": "^5.0.1",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-require-ignore": "^0.1.1",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-polyfill": "^6.26.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-es2017": "^6.24.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-2": "^6.24.1",
"clean-webpack-plugin": "^0.1.19",
"cross-env": "^5.2.0",
"css-loader": "^1.0.0",
"eslint": "^5.6.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-plugin-babel": "^5.2.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jsx-a11y": "^6.1.1",
"eslint-plugin-markdown": "^1.0.0-beta.6",
"eslint-plugin-react": "^7.11.1",
"extract-text-webpack-plugin": "^3.0.2",
"fastclick": "^1.0.6",
"gh-pages": "^2.0.0",
"html-webpack-plugin": "^3.2.0",
"json-loader": "^0.5.7",
"less": "^3.8.1",
"less-loader": "^4.1.0",
"marked": "^0.5.1",
"postcss-loader": "^3.0.0",
"raw-loader": "^0.5.1",
"react": "^16.5.1",
"react-dom": "^16.5.1",
"react-markdown": "^4.0.2",
"react-router": "^4.3.1",
"react-router-dom": "^4.3.1",
"react-split-pane": "^0.1.84",
"react-transition-group": "^2.5.0",
"style-loader": "^0.23.0",
"url-loader": "^1.1.1",
"webpack": "^3.12.0",
"webpack-bundle-analyzer": "^3.0.2",
"webpack-dev-server": "^2.11.3"
},
"peerDependencies": {
"react": "0.14.x || ^15.0.0-0 || 15.x || 16.5.1",
"react-dom": "^0.14.x || ^15.0.0-0 || 15.x || 16.5.1"
}
}