add package.json,

add gitignore,
add express as dependency

Signed-off-by: Arthur Lu <learthurgo@gmail.com>
This commit is contained in:
Arthur Lu 2023-01-17 14:57:42 -08:00
commit d6af5518de
2 changed files with 10 additions and 0 deletions

2
.gitignore vendored Normal file
View File

@ -0,0 +1,2 @@
**/package-lock.json
**/node_modules

8
package.json Normal file
View File

@ -0,0 +1,8 @@
{
"name": "proxmoxaas-api",
"version": "0.0.1",
"description": "REST API for ProxmoxAAS",
"dependencies": {
"express": "^4.18.2"
}
}