forked from HowardWong/react-mobx-boilerplate
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.3 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
{
"name": "react-mobx-boilerplate",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"dev": "webpack-dev-server -d --history-api-fallback --hot --inline --progress --colors --open",
"build": "webpack -p --progress --colors"
},
"repository": {
"type": "git",
"url": "git+https://github.com/HowardWong/react-mobx-boilerplate.git"
},
"author": "Howard Wong",
"license": "MIT",
"bugs": {
"url": "https://github.com/HowardWong/react-mobx-boilerplate/issues"
},
"homepage": "https://github.com/HowardWong/react-mobx-boilerplate#readme",
"dependencies": {
"babel-polyfill": "^6.26.0",
"history": "^4.7.2",
"mobx": "^3.6.1",
"mobx-react": "^4.4.2",
"mobx-react-router": "^4.0.1",
"react": "^16.2.0",
"react-dom": "^16.2.0",
"react-hot-loader": "^4.0.0",
"react-router": "^4.2.0"
},
"devDependencies": {
"babel-core": "^6.26.0",
"babel-loader": "^7.1.3",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-plugin-transform-react-jsx": "^6.24.1",
"babel-preset-env": "^1.6.1",
"html-webpack-plugin": "^3.0.4",
"webpack": "^3.8.1",
"webpack-dev-server": "^2.9.3"
}
}