-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
63 lines (63 loc) · 2.06 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
{
"name": "react-mobx-router5-example",
"version": "0.0.1",
"description": "Example of React Integration with MobX and Router5",
"main": "''",
"repository": {
"type": "git",
"url": "https://github.com/LeonardoGentile/react-mobx-router5-example"
},
"author": "Leonardo Gentile",
"license": "MIT",
"homepage": "https://github.com/LeonardoGentile/react-mobx-router5-example#readme",
"dependencies": {
"axios": "0.18.0",
"mobx": "^4.2.0",
"mobx-react": "^5.0.0",
"mobx-router5": "^4.1.0",
"react": "16.3.2",
"react-dom": "16.3.2",
"router5": "^6.1.2",
"react-mobx-router5": "^6.1.0"
},
"devDependencies": {
"autoprefixer": "^6.7.2",
"babel-core": "6.23.1",
"babel-eslint": "^8.2.3",
"babel-loader": "7.1.4",
"babel-plugin-react-html-attrs": "^2.0.0",
"babel-plugin-transform-class-properties": "^6.16.0",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-plugin-transform-runtime": "^6.15.0",
"babel-preset-es2015": "6.24.1",
"babel-preset-react": "6.24.1",
"babel-preset-stage-3": "^6.24.1",
"babel-runtime": "^6.26.0",
"css-loader": "0.28.11",
"eslint": "^4.19.1",
"eslint-plugin-react": "^7.7.0",
"extract-text-webpack-plugin": "^3.0.2",
"file-loader": "1.1.11",
"html-webpack-plugin": "^3.2.0",
"mobx-react-devtools": "^5.0.1",
"node-sass": "^4.8.3",
"postcss-loader": "^2.1.4",
"prop-types": "^15.6.1",
"react-hot-loader": "^4.1.0",
"sass-loader": "^7.0.1",
"sass-resources-loader": "^1.3.3",
"source-map-loader": "^0.2.3",
"style-loader": "0.21.0",
"url-loader": "1.0.1",
"webpack": "^3.10.0",
"webpack-cleanup-plugin": "^0.5.1",
"webpack-dashboard": "^1.1.1",
"webpack-dev-server": "2.11.2"
},
"scripts": {
"build": "webpack --config webpack.production.config.js --progress --profile --colors",
"start": "webpack-dev-server --progress --profile",
"lint": "eslint --ext js --ext jsx src || exit 0",
"dev": "webpack-dashboard -- webpack-dev-server --progress --profile --colors"
}
}