Error: Can't find npm module 'meteor'

As soon as I install the lodash package I get this error.

I already reinstalled Meteor and uninstalled the global node.js install.

This are my meteor npm list results:

+-- babel-runtime@6.23.0
| +-- core-js@2.4.1
| `-- regenerator-runtime@0.10.3
+-- faker@4.1.0
+-- lodash@4.17.4
+-- meteor-node-stubs@0.2.5
| +-- assert@1.4.1
| +-- browserify-zlib@0.1.4
| | `-- pako@0.2.9
| +-- buffer@4.9.1
| | +-- base64-js@1.2.0
| | +-- ieee754@1.1.8
| | `-- isarray@1.0.0
| +-- console-browserify@1.1.0
| | `-- date-now@0.1.4
| +-- constants-browserify@1.0.0
| +-- crypto-browserify@3.11.0
| | +-- browserify-cipher@1.0.0
| | | +-- browserify-aes@1.0.6
| | | | `-- buffer-xor@1.0.3
| | | +-- browserify-des@1.0.0
| | | | `-- des.js@1.0.0
| | | |   `-- minimalistic-assert@1.0.0
| | | `-- evp_bytestokey@1.0.0
| | +-- browserify-sign@4.0.0
| | | +-- bn.js@4.11.6
| | | +-- browserify-rsa@4.0.1
| | | +-- elliptic@6.3.2
| | | | +-- brorand@1.0.6
| | | | `-- hash.js@1.0.3
| | | `-- parse-asn1@5.0.0
| | |   `-- asn1.js@4.9.0
| | +-- create-ecdh@4.0.0
| | +-- create-hash@1.1.2
| | | +-- cipher-base@1.0.3
| | | +-- ripemd160@1.0.1
| | | `-- sha.js@2.4.8
| | +-- create-hmac@1.1.4
| | +-- diffie-hellman@5.0.2
| | | `-- miller-rabin@4.0.0
| | +-- inherits@2.0.1
| | +-- pbkdf2@3.0.9
| | +-- public-encrypt@4.0.0
| | `-- randombytes@2.0.3
| +-- domain-browser@1.1.7
| +-- events@1.1.1
| +-- http-browserify@1.7.0
| | `-- Base64@0.2.1
| +-- https-browserify@0.0.1
| +-- os-browserify@0.2.1
| +-- path-browserify@0.0.0
| +-- process@0.11.9
| +-- punycode@1.4.1
| +-- querystring-es3@0.2.1
| +-- readable-stream@2.2.1
| | +-- buffer-shims@1.0.0
| | +-- core-util-is@1.0.2
| | +-- process-nextick-args@1.0.7
| | `-- util-deprecate@1.0.2
| +-- stream-browserify@2.0.1
| +-- string_decoder@0.10.31
| +-- timers-browserify@1.4.2
| +-- tty-browserify@0.0.0
| +-- url@0.11.0
| | +-- punycode@1.3.2
| | `-- querystring@0.2.0
| +-- util@0.10.3
| `-- vm-browserify@0.0.4
|   `-- indexof@0.0.1
+-- react@15.4.2
| +-- fbjs@0.8.9
| | +-- core-js@1.2.7
| | +-- isomorphic-fetch@2.2.1
| | | +-- node-fetch@1.6.3
| | | | +-- encoding@0.1.12
| | | | | `-- iconv-lite@0.4.15
| | | | `-- is-stream@1.1.0
| | | `-- whatwg-fetch@2.0.3
| | +-- promise@7.1.1
| | | `-- asap@2.0.5
| | +-- setimmediate@1.0.5
| | `-- ua-parser-js@0.7.12
| +-- loose-envify@1.3.1
| | `-- js-tokens@3.0.1
| `-- object-assign@4.1.1
`-- react-dom@15.4.2

Any help, please,?

After few hours of testing and reviewing, I found the error! Silly error!

Simply, I wrote
import { Meteor } from 'meteor';
instead of
import { Meteor } from 'meteor/meteor';

:rage: