-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 889 Bytes
/
Copy pathpackage.json
File metadata and controls
33 lines (33 loc) · 889 Bytes
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
{
"name": "hmr-tutorial",
"version": "1.0.0",
"description": "Webpack configuration tutorial",
"main": "index.js",
"author": "Micho García <micho.garcia@geomati.co>",
"license": "MIT",
"scripts": {
"build": "webpack",
"dev": "webpack-dev-server --host 0.0.0.0",
"report": "REPORT=true webpack"
},
"devDependencies": {
"babel-core": "^6.25.0",
"babel-loader": "^7.0.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"css-loader": "^0.28.4",
"extract-text-webpack-plugin": "^2.1.2",
"file-loader": "^0.11.2",
"react-hot-loader": "next",
"style-loader": "^0.18.2",
"webpack": "^2.6.1",
"webpack-bundle-analyzer": "^2.8.2",
"webpack-dev-server": "^2.4.5"
},
"dependencies": {
"onsenui": "^2.3.3",
"react": "^15.5.4",
"react-dom": "^15.5.4",
"react-onsenui": "^1.3.4"
}
}