Author: Maurice Gonzenbach, maurice@caplena.com
# Install nvm (node version manager)
# https://github.com/creationix/nvm
# Use the correct node version (defined by `.nsvmrc`)
nvm use
# install dependencies
npm install
# serve with hot reload at 127.0.0.1:8080
# requires running an instance of the API locally on port 8000
npm run dev
# serve with hot reload at 127.0.0.1:8080
# calls the development API
npm run dev -- dev-api
# build for production with minification
npm run build -- prod
# build for production and view the bundle analyzer report
npm run build --report
# run unit tests | NOT IMPLEMENTED
# npm run unit
# run e2e tests | NOT IMPLEMENTED
# npm run e2e
# run all tests | NOT IMPLEMENTED
# npm test