You are on page 1of 1

Package.

js0n

It is reponsible for storing meta data about your application.


It contains mainly-

* dependencies-It contains different packges that we are using in our application.


As they make all the packages globally
available.

* devDependencies- developmentDependencies .these are only for your use so that


your work is easy. It contains the
dependencies that you don't require in your project. Only required at the time of
development.

*scripts- The outputs you see are because of scripts. When we need to start and see
a project output globally we do it by =
npm start.( start, build, test , eject) these are the reserved keyword and to run
it you just need to write (npm) before it .
But if you create your own script then you need to write (nmp run) before your
customized keyword.

*Why did we imported icons name in curly braces?


= Whenever something is already exported as default such as Navigation and react
there we did'nt use the curly braces
But whenever something is imported externally then we have to write it in curly
braces.

You might also like