Removed '.' from project.json instructions
With this '.' in place, the NPM start command will not work. Once removed, NPM start worksfine.
I believe the '.' was erroneously placed here.
The periode is the input for the --content-base. This works fine for me. What error are you getting?
Here is a link on Pastebin with more information. (didn't want to clutter up this feed).
I illustrate what happen without the '.', the error WITH the '.', and finally the debug.log from the result.
Let me know if I can clarify further.
There is an error in your pastebin (http://pastebin.com/vqE7e6Jf).
Line 20 looks like this:
> webpack-dev-server --inline --content-base. --history-api-fallback .
It is suppose to be like this
> webpack-dev-server --inline --content-base . --history-api-fallback
Ref this line in the readme: "start": "webpack-dev-server --inline --content-base . --history-api-fallback"
There should be a space between --content-base and the periode. There should also be no periode at after the --history-api-fallback
Try changing that and try again.