-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
34 lines (34 loc) · 997 Bytes
/
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
{
"name": "mobx-web-tutorial",
"version": "1.0.0",
"description": "NA",
"repository": "NA",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"webpack": "set NODE_ENV=production && webpack --progress --colors",
"webpack analyzer": "webpack --progress --json | webpack-bundle-size-analyzer",
"dev": "webpack-dev-server --inline --hot --progress --colors"
},
"author": "Ricardo Medina",
"license": "ISC",
"dependencies": {
"mobx": "^2.0.0",
"mobx-react": "^3.0.3",
"react": "^15.0.1",
"react-dom": "^15.0.1",
"rxjs": "^5.0.0-beta.4",
"semantic-ui": "^2.1.8"
},
"devDependencies": {
"babel-core": "^6.5.1",
"babel-eslint": "^6.0.2",
"babel-loader": "^6.2.2",
"babel-plugin-react-html-attrs": "^2.0.0",
"babel-preset-es2015": "^6.5.0",
"babel-preset-react": "^6.5.0",
"babel-preset-stage-2": "^6.5.0",
"webpack": "^1.12.14",
"webpack-dev-server": "^1.14.1"
}
}