How does to work with AWS Lambdas without Serverless Framework?

Hi, I have strange problem because I have some amount of simple AWS Lambdas wrote in javascript. For my own I use Serverless Framework and all works perfect. But now I can’t get AWS user who has administration rights.
I don’t know how to manage those lambdas in node project, now in mvp I copy pased source directly into AWS. But now I want to do it by script.

One of idea was to create simple node project per lambda but its overhead I think.
Put all lambdas into one node project is problematic because how to zip each of them with all dependencies?

Thanks for any suggestions

The Serverless Framework is one of many tools you can use to deploy Lambda’s. AWS has a similar tool called SAM. You could also use the AWS CLI.