Reputation: 3347
I am having problems with npm and babel/core/
I can't install the demo app from https://github.com/jakearchibald/wittr
$ git clone https://github.com/jakearchibald/wittr
$ npm install
I get
added 1053 packages from 526 contributors and audited 6107 packages in 29.719s
found 33 vulnerabilities (15 low, 17 high, 1 critical)
run npm audit fix
to fix them, or npm audit
for details
npm install --save-dev [email protected] [email protected] [email protected] [email protected] [email protected] [email protected] [email protected] [email protected] [email protected]
npm WARN [email protected] requires a peer of @babel/core@^7.0.0 but none is installed. You must install peer dependencies yourself.
npm WARN [email protected] requires a peer of @babel/core@^7.0.0 but none is installed. You must install peer dependencies yourself.
+ [email protected]
+ [email protected]
+ [email protected]
+ [email protected]
+ [email protected]
+ [email protected]
+ [email protected]
+ [email protected]
+ [email protected]
added 120 packages from 91 contributors, removed 143 packages, updated 54 packages and audited 10195 packages in 13.062s
found 4 vulnerabilities (3 low, 1 high)
run `npm audit fix` to fix them, or `npm audit` for details
I got all the vulnerabilities down to just 1 high and 3 low. But npm run serve isn't working
I am running node 10.10.2 which is way above the recommended dependency of 0.12.7 so that should not be a problem
I'm using npm version 6.4.1
The package.json file is here
Any help would be greatly appreciated,
Thanks
Upvotes: 2
Views: 1388
Reputation: 622
Try installing Babel 7, It should work
$ npm install --save-dev babelify @babel/core
I had the same issue, as you can see in the below image
After installing
Click on this for further information babelify
Upvotes: 3