How can i get list of JS libraries used in a react app from build pack?
As far as I know, we can import JS libraries that are referenced in a package.json. Does a build pack contain a file like a package.json? If not how can i get imported libraries from a build pack?
Anil Panghal
JS learner
If I understood it correctly you are looking to see which all libraries( or packages) are there in the final build.
In case you are using webpack try webpack-bundle-analyzer.
In case you are using browserify Disc can help you.