From 123b2ea4e001beaab78fbd2c6043c40b84b56738 Mon Sep 17 00:00:00 2001 From: Panayiotis Lipiridis Date: Mon, 9 Mar 2020 23:47:43 +0200 Subject: [PATCH] Remove node --- index.ts | 2 +- package.json | 3 --- 2 files changed, 1 insertion(+), 4 deletions(-) diff --git a/index.ts b/index.ts index 85cac2e..2a437a4 100644 --- a/index.ts +++ b/index.ts @@ -8,7 +8,7 @@ const app = express(); const port = process.env.PORT || 8080; app.get("/", (req, res) => { - res.send("Hi, collab!"); + res.send("Hi, excalidraw-room!"); }); const server = http.createServer(app); diff --git a/package.json b/package.json index 85ad961..04a0f8c 100644 --- a/package.json +++ b/package.json @@ -12,9 +12,6 @@ "lint-staged": "10.0.8", "prettier": "1.19.1" }, - "engines": { - "node": "10.x.x" - }, "husky": { "hooks": { "pre-commit": "lint-staged"