See the development guide for details.
Some Tips:
- You can add other package dependencies by running
npm install something --save. With the--saveoption npm will auto add the installed dependency in yourpackage.json - You can always install all dependencies in the package.json with
npm install
- Add all edited files with
git add file. For example:git add package.jsonthen commit you changes withgit commit. - After that you can push you commited work to github:
git push