Fui tentar rodar o comando da aula após as instalações e o terminal apareceu um erro referente ao NPM Watch:
gabriela@gabriela-M16:~/Documentos/alurabank/alurabank/app$ npm start
> alurabank@1.0.0 start /home/gabriela/Documentos/alurabank/alurabank
> concurrently "npm run watch" "npm run server"
[1]
[1] > alurabank@1.0.0 server /home/gabriela/Documentos/alurabank/alurabank
[1] > lite-server --baseDir=app
[1]
[0] npm
[0]
[0] ERR!
[0] Linux 4.4.0-83-generic
[0] npm
[0]
[0] ERR!
[0]
[0] argv
[0] "/usr/bin/nodejs" "/usr/bin/npm" "run" "watch"
[0] npm
[0]
[0] ERR!
[0]
[0] node
[0] v6.11.0
[0] npm
[0]
[0] ERR!
[0]
[0] npm
[0] v3.10.10
[0]
[0] npm
[0]
[0] ERR!
[0] missing script: watch
[0] npm
[0]
[0] ERR!
[0]
[0] npm
[0]
[0] ERR!
[0] If you need help, you may report this error at:
[0] npm ERR! <https://github.com/npm/npm/issues>
[0]
[0] npm
[0]
[0] ERR!
[0] Please include the following file with any support request:
[0] npm
[0]
[0] ERR!
[0] /home/gabriela/Documentos/alurabank/alurabank/npm-debug.log
[0] npm run watch exited with code 1
[1] Did not detect a `bs-config.json` or `bs-config.js` override file. Using lite-server defaults...
[1] ** browser-sync config **
[1] { injectChanges: false,
[1] files: [ './**/*.{html,htm,css,js}' ],
[1] watchOptions: { ignored: 'node_modules' },
[1] server: { baseDir: 'app', middleware: [ [Function], [Function] ] } }
[1] [BS] Access URLs:
[1] -------------------------------------
[1] Local: http://localhost:3000
[1] External: http://192.168.0.22:3000
[1] -------------------------------------
[1] UI: http://localhost:3001
[1] UI External: http://192.168.0.22:3001
[1] -------------------------------------
[1] [BS] Serving files from: app
[1] [BS] Watching files...
[1] 17.07.13 11:05:30 304 GET /index.html
[1] 17.07.13 11:05:30 304 GET /css/bootstrap.css
[1] 17.07.13 11:05:30 304 GET /css/bootstrap-theme.css
[1] 17.07.13 11:05:30 304 GET /lib/jquery.min.js
[1] 17.07.13 11:05:30 304 GET /lib/system.js
[1] 17.07.13 11:05:30 304 GET /js/app.js
[1] 17.07.13 11:05:30 304 GET /js/controllers/NegociacaoController.js
[1] 17.07.13 11:05:30 304 GET /js/views/MensagemView.js
[1] 17.07.13 11:05:30 304 GET /js/views/NegociacoesView.js
[1] 17.07.13 11:05:30 304 GET /js/models/Negociacoes.js
[1] 17.07.13 11:05:30 304 GET /js/models/Negociacao.js
[1] 17.07.13 11:05:30 304 GET /js/views/View.js
Tentei fazer uma alteração no arquivo .ts e como esperado ele não compilou automaticamente. Tentei instalar o npm watch manualmente(https://www.npmjs.com/package/npm-watch), mas também não compilou e não tenho certeza se é esse npm-watch que ele usa.
Alguém sabe o que pode resolver esse problema?