# setup
$ npm install -g webpack webpack-dev-server typescript typings
$ npm install
$ typings install
# npm scripts
$ npm run make # compiles the app to dist/
$ npm run make:prod # same, but production version
$ npm run watch # watches src/ and compiles on change
$ npm run dev # same, but with live-reload (BrowserSync)
$ npm run clean # cleans up logs, modules and build dirs
$ npm run lint # lints all JS and TS code in project