This repository has been archived by the owner on Feb 28, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.55 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
{
"name": "mobx-react-boilerplate",
"version": "1.0.0",
"description": "Boilerplate for MobX + React project with JSX, ES6 and decorator compilation",
"scripts": {
"start": "webpack-dev-server --hot --open",
"lint": "eslint src",
"deploy": "gh-pages -d dist"
},
"repository": {
"type": "git",
"url": "https://github.com/mobxjs/mobx-react-boilerplate.git"
},
"keywords": [
"react",
"reactjs",
"boilerplate",
"mobx",
"starter-kit"
],
"author": "Michel Weststrate <[email protected]> (http://github.com/mweststrate)",
"license": "MIT",
"bugs": {
"url": "https://github.com/mobxjs/mobx/issues"
},
"homepage": "http://mobxjs.github.com/mobx",
"devDependencies": {
"babel-core": "^6.9.1",
"babel-loader": "^7.1.2",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-preset-es2015": "^6.9.0",
"babel-preset-react": "^6.5.0",
"babel-preset-stage-1": "^6.5.0",
"html-webpack-plugin": "^3.2.0",
"extract-text-webpack-plugin": "^3.0.2",
"gh-pages": "^1.1.0",
"uglifyjs-webpack-plugin": "^1.1.6",
"webpack": "^3.5.5",
"webpack-dev-server": "^2.7.1"
},
"dependencies": {
"axios": "^0.17.1",
"lodash": "^4.17.4",
"mobile-detect": "^1.4.1",
"mobx": "^3.0.0",
"mobx-react": "^4.1.0",
"mobx-react-devtools": "^4.2.11",
"query-string": "^5.0.1",
"react": "^15.1.0",
"react-bootstrap": "^0.32.0",
"react-bootstrap-table": "^4.3.1",
"react-dom": "^15.1.0",
"react-media": "^1.6.1",
"react-router-dom": "^4.2.2"
}
}