Erro initializing ionic serve

Good afternoon folks.
I need you help to solve this problem, someone could give me a light, I tried to start serve the ionic and presented this message:

jonatas@debian:~/mobile_maps$ ionic serve

There is an error in your gulpfile: 
Error: EIO: i/o error, read
    at Error (native)
    at Object.fs.readSync (fs.js:603:19)
    at Object.fs.readFileSync (fs.js:433:24)
    at Object.Module._extensions..js (module.js:415:20)
    at Module.load (module.js:343:32)
    at Function.Module._load (module.js:300:12)
    at Module.require (module.js:353:17)
    at require (internal/module.js:12:17)
    at /home/jonatas/mobile_maps/node_modules/globule/node_modules/minimatch/minimatch.js:38:15
    at Object.<anonymous> (/home/jonatas/mobile_maps/node_modules/globule/node_modules/minimatch/minimatch.js:1051:3)

And when I run npm install command displays this message:

npm WARN EIO: i/o error, read

Run this commands on Linux and rolled the ionic serve.

rm -rf node_modules && docker run -it --rm -v $(pwd):/usr/src/app -w /usr/src/app mhart/alpine-node:latest sh -c "apk add --no-cache --virtual .npm-deps git python make gcc linux-headers alpine-sdk && mkdir ../npm-install && cp package.json ../npm-install/package.json && cd ../npm-install && npm install && tar -cf ../app/npm.tar node_modules" && tar -zxf npm.tar && rm -rf npm.tar