Im very new to Netlify, Just worked through a few tutorials, and got a react app with apollo graphql lambda function deployed and working. Which is awesome, but I something is bugging me.
All the examples bundle the npm package dependencies for the react app, and serverless functions in the one package.json. Am I right in assuming there is no bunding overhead as only the packages explicitly required are bundled? But thats not the problem.
The problem is I want best of both worlds - Continuous Deployment, but also monorepo like organisation, and a way of not having one massive package.json. Sorting out dependencies is hard enough!
Hopefully this is a newb question, someone further down the path can enlighten me please!
Thx
H