-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
98 lines (98 loc) · 2.85 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
97
98
{
"name": "demo4",
"version": "1.0.0",
"author": "LQ",
"license": "ISC",
"description": "",
"main": "src/index.js",
"scripts": {
"eslint": "eslint --ext .js,.jsx src/",
"clean:coverage": "rimraf coverage",
"clean:dist": "rimraf dist",
"karma": "karma start",
"build:webpack": "webpack --config webpack-pro-config.js --progress --colors",
"test": "npm-run-all clean:coverage karma",
"start": "webpack-dev-server --config webpack-dev-config.js --open",
"build": "npm-run-all clean:dist build:webpack"
},
"pre-commit": [
"eslint"
],
"dependencies": {
"antd-mobile": "^1.4.2",
"babel-runtime": "^6.23.0",
"classnames": "^2.2.5",
"isomorphic-fetch": "^2.2.1",
"moment": "^2.18.1",
"prop-types": "^15.5.10",
"rc-form": "^1.4.3",
"react": "^15.6.1",
"react-addons-css-transition-group": "^15.6.0",
"react-dom": "^15.6.1",
"react-fastclick": "^3.0.2",
"react-iscroll": "^2.0.3",
"react-redux": "^5.0.5",
"react-router": "^3.0.5",
"redux": "^3.7.2",
"redux-logger": "^3.0.6",
"redux-saga": "^0.15.5",
"redux-thunk": "^2.2.0",
"reselect": "^3.0.1"
},
"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-istanbul": "^4.1.4",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-env": "^1.6.0",
"babel-preset-flow": "^6.23.0",
"babel-preset-latest": "^6.24.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"chai": "^4.1.0",
"css-loader": "^0.28.4",
"enzyme": "^2.9.1",
"eslint": "^4.3.0",
"eslint-config-airbnb": "^15.1.0",
"eslint-loader": "^1.9.0",
"eslint-plugin-flowtype": "^2.35.0",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-jsx-a11y": "^5.1.1",
"eslint-plugin-react": "^7.1.0",
"file-loader": "^0.11.2",
"flow-bin": "^0.52.0",
"gulp": "^3.9.1",
"gulp-connect": "^5.0.0",
"gulp-gh-pages": "^0.5.4",
"html-webpack-plugin": "^2.29.0",
"karma": "^1.7.0",
"karma-chai": "^0.1.0",
"karma-chrome-launcher": "^2.2.0",
"karma-coverage": "^1.1.1",
"karma-jasmine": "^1.1.0",
"karma-mocha": "^1.3.0",
"karma-mocha-reporter": "^2.2.3",
"karma-phantomjs-launcher": "^1.0.4",
"karma-webpack": "^2.0.4",
"mocha": "^3.4.2",
"npm-run-all": "^4.0.2",
"postcss-loader": "^2.0.6",
"postcss-pxtorem": "^4.0.1",
"postcss-scss": "^1.0.2",
"pre-commit": "^1.2.2",
"precss": "^2.0.0",
"rc-form": "^1.4.3",
"react-test-renderer": "^15.6.1",
"rimraf": "^2.6.1",
"rucksack-css": "^0.9.1",
"sinon": "^2.3.8",
"style-loader": "^0.18.2",
"svg-sprite-loader": "^0.3.1",
"url-loader": "^0.5.9",
"webpack": "^3.3.0",
"webpack-dev-server": "^2.5.1"
}
}