From db6b0856c9d1564600f0ff0a8aab5550a8c774ce Mon Sep 17 00:00:00 2001 From: Mathias Wagner Date: Tue, 27 Dec 2022 15:16:42 +0100 Subject: [PATCH] Added all server scripts to the package.json --- package.json | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/package.json b/package.json index 711781e..45a88f9 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,12 @@ { "name": "mylinks", "description": "Eine modulare Link-Verwaltungssoftware zum kürzen von Links, erstellen von Umfragen und mehr.", + "scripts": { + "admin": "cd admin && npm run dev", + "server": "nodemon server", + "build": "cd admin && npm run build", + "dev": "concurrently --kill-others-on-fail \"npm run server\" \"npm run admin\"" + }, "dependencies": { "bcrypt": "^5.1.0", "ejs": "^3.1.8",