From a47536d40454517e9caf47287d7bd04cc7091e16 Mon Sep 17 00:00:00 2001 From: BurnyLlama Date: Sat, 25 Sep 2021 11:57:55 +0200 Subject: [PATCH] Basic boilerplate added. --- .gitignore | 3 +++ package.json | 6 +++++- 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/.gitignore b/.gitignore index 6f92a01..e79abf2 100644 --- a/.gitignore +++ b/.gitignore @@ -116,3 +116,6 @@ dist .yarn/install-state.gz .pnp.* + +package-lock.json +pnpm-lock.yaml \ No newline at end of file diff --git a/package.json b/package.json index 56bc6bc..62006ae 100644 --- a/package.json +++ b/package.json @@ -3,6 +3,7 @@ "version": "0.0.1", "description": "A DDNet Status and Statistics API.", "main": "index.js", + "type": "module", "scripts": { "test": "echo \"Error: no test specified\" && exit 1" }, @@ -14,5 +15,8 @@ "ddnet" ], "author": "BurnyLlama, furo", - "license": "WTFPL" + "license": "WTFPL", + "dependencies": { + "express": "^4.17.1" + } }