How to search for a particular package by npm?

0

I started a project in React and want to know how I look for a particular package installed directly by npm?

    
asked by anonymous 11.05.2018 / 21:36

1 answer

-2

Run the command below in the terminal:

npm list | grep {pacote_desejado}   
    
11.05.2018 / 22:02