1
0
Fork 0
mirror of https://github.com/terribleplan/next.js.git synced 2024-01-19 02:48:18 +00:00
next.js/examples/with-webpack-bundle-analyzer/package.json
Tim Neutkens ff547752f0 Fix HMR issue with webpack-stats-analyzer (#1149)
* Use stats.json instead of running server

* Add suggested changes
2017-02-15 21:42:48 +09:00

19 lines
395 B
JSON

{
"name": "with-webpack-bundle-analyzer",
"version": "1.0.0",
"scripts": {
"dev": "next",
"build": "next build",
"start": "next start",
"bundle:view": "webpack-bundle-analyzer .next/stats.json"
},
"dependencies": {
"next": "beta",
"react": "^15.4.2",
"react-dom": "^15.4.2",
"webpack-bundle-analyzer": "^2.3.0"
},
"author": "",
"license": "ISC"
}