-
Notifications
You must be signed in to change notification settings - Fork 15
/
package.json
80 lines (80 loc) · 2.48 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
{
"name": "react16-webpack3.8-onepage-base-project",
"version": "1.0.0",
"description": "基础架子",
"main": "index.js",
"scripts": {
"flow": "flow check --all",
"dev": "cross-env PROT=8000 node build/webpack.dev.config.js",
"test": "webpack -d --progress --hide-modules --colors --config build/webpack.test.config.js",
"test:dll": "cross-env BUILD_TYPE=test webpack --progress --config build/webpack.dll.config.js",
"build": "webpack --progress --colors --config build/webpack.product.config.js",
"build:dll": "cross-env BUILD_TYPE=build webpack --progress --config build/webpack.dll.config.js",
"eslint": "eslint src "
},
"pre-commit": [
"eslint"
],
"repository": {
"type": "git",
"url": "git+https://github.com/wangweianger/react16-webpack3.8-onepage-base-project.git"
},
"keywords": [
"react",
"react-router",
"webpack",
"redux"
],
"author": "zane",
"license": "ISC",
"homepage": "http://blog.seosiwei.com/",
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-eslint": "^8.0.2",
"babel-loader": "^7.1.2",
"babel-plugin-syntax-dynamic-import": "^6.18.0",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-polyfill": "^6.26.0",
"babel-preset-env": "^1.6.1",
"babel-preset-flow": "^6.23.0",
"babel-preset-react": "^6.24.1",
"bundle-loader": "^0.5.5",
"cross-env": "^5.1.1",
"css-loader": "^0.28.7",
"eslint": "^4.10.0",
"eslint-loader": "^1.9.0",
"eslint-plugin-react": "^7.4.0",
"extract-text-webpack-plugin": "^3.0.2",
"file-loader": "^1.1.5",
"flow-bin": "^0.59.0",
"happypack": "^4.0.0",
"html-webpack-plugin": "^2.30.1",
"jquery": "^3.2.1",
"node-sass": "^4.6.0",
"open-browser-webpack-plugin": "^0.0.5",
"pre-commit": "^1.2.2",
"react": "^16.0.0",
"react-dom": "^16.0.0",
"react-loadable": "^5.3.1",
"react-redux": "^5.0.6",
"react-router-config": "^1.0.0-beta.4",
"react-router-dom": "^4.2.2",
"react-router-redux": "^4.0.8",
"redux": "^3.7.2",
"redux-thunk": "^2.2.0",
"sass-loader": "^6.0.6",
"string-replace-loader": "^1.3.0",
"style-loader": "^0.19.0",
"url-loader": "^0.6.2",
"webpack": "^3.8.1",
"webpack-cleanup-plugin": "^0.5.1",
"webpack-dev-server": "^2.9.4",
"webpack-dll-loader": "^0.0.1",
"webpack-parallel-uglify-plugin": "^1.0.0",
"zane-calendar": "^2.2.4"
},
"dependencies": {
"antd": "^3.11.6"
}
}