-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
92 lines (92 loc) · 2.61 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
{
"name": "react-webapp",
"version": "1.0.0",
"description": "react webapp",
"main": "index.js",
"scripts": {
"test": "",
"clean": "rimraf index.html dist",
"start": "better-npm-run start",
"build": "better-npm-run build",
"eslint": "eslint src",
"stylelint": "stylelint src/**/*.scss"
},
"betterScripts": {
"start": {
"command": "webpack-dev-server --config webpack --hot --inline --progress --colors",
"env": {
"NODE_ENV": "development"
}
},
"build": {
"command": "npm run clean && webpack -p --config webpack --define process.env.NODE_ENV='\"production\"' --progress --profile --colors",
"env": {
"NODE_ENV": "production"
}
}
},
"keywords": [
"react"
],
"author": "zhaojintian",
"license": "ISC",
"devDependencies": {
"autoprefixer": "^6.5.1",
"babel-core": "^6.18.0",
"babel-eslint": "^7.1.0",
"babel-loader": "^6.2.7",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-preset-es2015": "^6.18.0",
"babel-preset-react": "^6.16.0",
"babel-preset-stage-1": "^6.16.0",
"better-npm-run": "0.0.12",
"bundle-loader": "^0.5.4",
"css-loader": "^0.25.0",
"cssnano": "^3.8.0",
"eslint": "^3.8.1",
"eslint-config-standard": "^6.2.1",
"eslint-config-standard-react": "^4.2.0",
"eslint-plugin-flow-vars": "^0.5.0",
"eslint-plugin-promise": "^3.3.0",
"eslint-plugin-react": "^6.4.1",
"eslint-plugin-standard": "^2.0.1",
"extract-text-webpack-plugin": "^1.0.1",
"file-loader": "^0.9.0",
"html-webpack-plugin": "^2.24.0",
"jsx-loader": "^0.13.2",
"node-sass": "^3.10.1",
"open-browser-webpack-plugin": "0.0.2",
"postcss-browser-reporter": "^0.5.0",
"postcss-font-magician": "^1.5.0",
"postcss-loader": "^1.1.0",
"postcss-reporter": "^1.4.1",
"rimraf": "^2.5.4",
"sass-loader": "^4.0.2",
"style-loader": "^0.13.1",
"stylelint": "^7.5.0",
"stylelint-config-standard": "^14.0.0",
"url-loader": "^0.5.7",
"webpack": "^1.13.3",
"webpack-dev-middleware": "^1.8.4",
"webpack-dev-server": "^1.16.2"
},
"dependencies": {
"axios": "^0.15.2",
"fbjs": "^0.8.5",
"history": "^4.3.0",
"preact": "^6.4.0",
"preact-compat": "^3.9.0",
"react": "^15.3.2",
"react-dom": "^15.3.2",
"react-lite": "^0.15.26",
"react-redux": "^4.4.5",
"react-router": "^3.0.0",
"react-weui": "^0.4.0",
"redux": "^3.6.0",
"redux-actions": "^0.12.0",
"redux-promise-middleware": "^4.1.0",
"redux-thunk": "^2.1.0",
"type-to-reducer": "^1.0.1",
"weui": "^0.4.3"
}
}