Skip to content

Commit

Permalink
fixed npm script problem and upgraded redux-form
Browse files Browse the repository at this point in the history
  • Loading branch information
Erik Rasmussen committed Jul 31, 2015
1 parent 4fd71d7 commit 2279d41
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ This is a starter boiler plate app I've put together using the following technol
* [React Hot Loader](https://github.com/gaearon/react-hot-loader)
* [Redux](https://github.com/gaearon/redux)'s futuristic [Flux](https://facebook.github.io/react/blog/2014/05/06/flux.html) implementation
* [Redux Dev Tools](https://github.com/gaearon/redux-devtools) for next generation DX (developer experience). Watch [Dan Abramov's talk](https://www.youtube.com/watch?v=xsSnOQynTHs).
* [redux-form](https://github.com/erikras/redux-form) to manage form state in Redux
* [style-loader](https://github.com/webpack/style-loader) and [sass-loader](https://github.com/jtangelder/sass-loader) to allow import of stylesheets

I cobbled this together from a wide variety of similar "starter" repositories. As I post this in June 2015, all of these libraries are right at the bleeding edge of web development. They may fall out of fashion as quickly as they have come into it, but I personally believe that this stack is the future of web development and will survive for several years. I'm building my new projects like this, and I recommend that you do, too.
Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
"lint": "eslint -c .eslintrc src",
"start-dev": "node ./node_modules/better-npm-run start-dev",
"watch-client": "node ./node_modules/better-npm-run watch-client",
"dev": "concurrently --kill-others \"npm run watch-client\" \"npm run start-dev\""
"dev": "concurrent --kill-others \"npm run watch-client\" \"npm run start-dev\""
},
"betterScripts": {
"start": {
Expand Down Expand Up @@ -72,7 +72,7 @@
"react-router": "v1.0.0-beta2",
"redux": "1.0.0-rc",
"redux-devtools": "0.1.2",
"redux-form": "0.0.1",
"redux-form": "^0.0.2",
"serialize-javascript": "^1.0.0",
"serve-favicon": "^2.3.0",
"serve-static": "^1.10.0",
Expand Down

0 comments on commit 2279d41

Please sign in to comment.