First, add live-server as a local dev dependency to your project. This ensures you'll always have the tool frozen and stable for your project:
$ npm install live-server --save-dev
Then, add the following to your package.json:
"scripts": {
"start": "set PORT=8800 && live-server"
}