-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
56 lines (56 loc) · 1.6 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
{
"name": "react-antd-mobile-demo",
"version": "1.0.0",
"description": "React Antd Mobile Demo",
"author": "jiangxy <foolbeargm@gmail.com>",
"license": "Apache-2.0",
"engines": {
"node": ">=5.0 <7",
"npm": ">=3.3 <4"
},
"keywords": [
"ant",
"mobile",
"react",
"demo"
],
"devDependencies": {
"babel-core": "6.4.5",
"babel-eslint": "6.0.0",
"babel-loader": "6.2.1",
"babel-plugin-antd": "0.4.1",
"babel-polyfill": "6.9.1",
"babel-preset-es2015": "6.3.13",
"babel-preset-react": "6.3.13",
"babel-preset-stage-0": "6.5.0",
"css-loader": "0.23.1",
"eslint": "2.7.0",
"eslint-config-airbnb": "6.x",
"eslint-plugin-react": "4.x",
"file-loader": "0.9.0",
"less": "2.7.1",
"less-loader": "2.2.3",
"lesshint": "2.0.2",
"react": "15.0.2",
"react-dom": "15.0.2",
"react-hot-loader": "1.3.0",
"style-loader": "0.13.1",
"stylelint": "6.6.0",
"stylelint-config-standard": "9.0.0",
"url-loader": "0.5.7",
"webpack": "1.12.12",
"webpack-dev-server": "1.14.1"
},
"dependencies": {
"antd-mobile": "0.7.2"
},
"scripts": {
"build": "webpack --progress --colors --display-error-details",
"prod": "NODE_ENV=production webpack --progress --colors --config webpack.config.prod.js -p --display-error-details",
"clean": "rm dist/bundle*",
"dev": "webpack-dev-server --devtool eval --progress --colors --content-base dist --hot --inline --display-error-details",
"eslint": "eslint --ext .js,.jsx src",
"stylelint": "stylelint \"src/**/*.css\"",
"lesshint": "lesshint src/"
}
}