This repository has been archived by the owner on Feb 18, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
53 lines (53 loc) · 1.72 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
{
"name": "slark",
"version": "1.0.0",
"description": "antd mobile scaffold",
"main": "webpack.config.js",
"scripts": {
"dev": "NODE_ENV=development webpack-dev-server --progress",
"build": "npm run build:clean && npm run build:webpack",
"build:clean": "rm -rf ./dist && mkdir ./dist",
"build:webpack": "webpack --progress --display-chunks --display-reasons --display-error-details --display-modules --display-exclude > ./dist/build.log"
},
"author": "wheatma",
"license": "MIT",
"dependencies": {
"antd-mobile": "^0.8.5",
"isomorphic-fetch": "^2.2.1",
"react": "^15.3.2",
"react-dom": "^15.3.2",
"react-redux": "^4.4.5",
"redux": "^3.6.0",
"redux-logger": "^2.6.1",
"redux-thunk": "^2.1.0"
},
"devDependencies": {
"autoprefixer": "^6.4.1",
"babel-loader": "^6.2.5",
"babel-plugin-antd": "^0.5.1",
"babel-plugin-transform-class-properties": "^6.11.5",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-plugin-transform-function-bind": "^6.8.0",
"babel-plugin-transform-runtime": "^6.15.0",
"babel-preset-es2015": "^6.14.0",
"babel-preset-react": "^6.11.1",
"babel-preset-stage-0": "^6.5.0",
"css-loader": "^0.25.0",
"extract-text-webpack-plugin": "^1.0.1",
"file-loader": "^0.9.0",
"glob": "^7.0.6",
"gulp-postcss": "^6.2.0",
"html-webpack-plugin": "^2.22.0",
"less": "^2.7.1",
"less-loader": "^2.2.3",
"postcss-loader": "^0.13.0",
"postcss-pxtorem": "^3.3.1",
"precss": "^1.4.0",
"style-loader": "^0.13.1",
"url-loader": "^0.5.7",
"webpack": "^1.13.2",
"webpack-dev-server": "^1.16.1",
"webpack-uglify-parallel": "^0.1.2",
"webpack-visualizer-plugin": "^0.1.5"
}
}