From: Carl Worth Date: Sun, 26 Apr 2020 21:49:31 +0000 (-0700) Subject: Add dependency for express package X-Git-Url: https://git.cworth.org/git?p=lmno-server;a=commitdiff_plain;h=0d87f71f098032a3d7c10b8d5c4061fe9c0f1a28 Add dependency for express package This was generated with: npm install --save express (This command also generated resolved dependencies in the package-lock.json file but I'm not commiting that in this commit.) --- diff --git a/package.json b/package.json index a78e3aa..361dcc8 100644 --- a/package.json +++ b/package.json @@ -7,5 +7,8 @@ "test": "echo \"Error: no test specified\" && exit 1" }, "author": "", - "license": "ISC" + "license": "ISC", + "dependencies": { + "express": "^4.17.1" + } }