-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
108 lines (108 loc) · 3.52 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
99
100
101
102
103
104
105
106
107
108
{
"name": "mobx-react-quick-starter",
"version": "1.0.0",
"description": "mobx+react quick starter",
"author": "maizi",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "webpack --config ./config/webpack.prod.js",
"webpack-dev": "webpack-dev-server --config config/webpack.dev.js",
"dev": "node server",
"eslint": "eslint src",
"prettier-eslint": "prettier-eslint",
"precommit": "lint-staged",
"format": "prettier-eslint --write \"src/**/*.js\"",
"flow-typed": "rimraf flow-typed/npm && flow-typed install --overwrite || true",
"build:analyzer": "cross-env analyzer=true npm run build"
},
"lint-staged": {
"*.{js,json}": [
"format",
"git add"
]
},
"dependencies": {
"babel-polyfill": "^6.26.0",
"flow-runtime": "^0.16.0",
"history": "^4.7.2",
"mobx": "^4.1.1",
"mobx-react": "^5.0.0",
"mobx-react-devtools": "^6.0.3",
"mobx-react-form": "^1.34.0",
"mobx-react-router": "^4.0.1",
"query-string": "^5.0.1",
"react": "16.2",
"react-dom": "16.2.0",
"react-hot-loader": "^4.0.1",
"react-loadable": "^5.3.1",
"react-router": "^4.2.0",
"react-router-dom": "^4.2.2",
"styled-components": "^3.2.3"
},
"devDependencies": {
"@babel/core": "^7.0.0-beta.42",
"@babel/plugin-proposal-class-properties": "^7.0.0",
"@babel/plugin-proposal-decorators": "^7.0.0",
"@babel/plugin-syntax-dynamic-import": "^7.0.0",
"@babel/plugin-transform-runtime": "^7.0.0-beta.42",
"@babel/preset-env": "^7.0.0-beta.42",
"@babel/preset-flow": "^7.0.0-beta.40",
"@babel/preset-react": "^7.0.0-beta.40",
"@babel/runtime": "^7.0.0-beta.42",
"babel-eslint": "^8.0.3",
"babel-loader": "^8.0.0-beta",
"babel-minify-webpack-plugin": "^0.2.0",
"babel-plugin-flow-runtime": "^0.15.0",
"babel-plugin-syntax-dynamic-import": "^6.18.0",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-decorators": "^6.24.1",
"babel-plugin-transform-decorators-legacy": "^1.3.5",
"babel-plugin-transform-runtime": "^6.23.0",
"browser-sync": "^2.18.13",
"clean-webpack-plugin": "^0.1.17",
"config": "^1.28.1",
"connect-history-api-fallback": "^1.5.0",
"copy-webpack-plugin": "^4.2.3",
"cross-env": "^5.1.4",
"css-hot-loader": "^1.3.4",
"css-loader": "^0.28.7",
"ejs": "^2.5.7",
"error-overlay-webpack-plugin": "^0.1.3",
"eslint": "^4.12.1",
"eslint-config-airbnb": "^16.1.0",
"eslint-plugin-flowtype": "^2.39.1",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-jsx-a11y": "^5.1.1",
"eslint-plugin-react": "^7.5.1",
"express": "^4.16.2",
"file-loader": "^1.1.5",
"flow-bin": "^0.60.1",
"happypack": "^5.0.0-beta.2",
"html-webpack-plugin": "^3.2.0",
"http-proxy-middleware": "^0.17.4",
"husky": "^0.14.3",
"image-webpack-loader": "^3.4.2",
"lint-staged": "^6.1.0",
"nyan-progress-webpack-plugin": "^1.2.0",
"open-browser-webpack-plugin": "^0.0.5",
"postcss-loader": "^2.1.0",
"prettier-eslint-cli": "^4.7.0",
"style-loader": "^0.19.0",
"uglifyjs-webpack-plugin": "^1.2.4",
"url-loader": "^0.6.2",
"webpack": "^4.6.0",
"webpack-bundle-analyzer": "^2.11.1",
"webpack-cli": "^2.0.14",
"webpack-dev-middleware": "^1.12.2",
"webpack-hot-middleware": "^2.21.0",
"webpack-merge": "^4.1.1",
"webpack-parallel-uglify-plugin": "^1.1.0"
},
"keywords": [
"mobx",
"react",
"styled-components",
"flow"
],
"license": "MIT"
}