From 3a7f9e20e58b14c3e978861e02cb1f95eb620fe0 Mon Sep 17 00:00:00 2001 From: Nick Stokoe Date: Sat, 31 Dec 2022 10:15:35 +0000 Subject: [PATCH] package.json - add server runscript --- package.json | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/package.json b/package.json index 888931f..7324fa0 100644 --- a/package.json +++ b/package.json @@ -4,8 +4,12 @@ "description": "Count down each New Year's arrival around the world", "main": "index.js", "scripts": { + "server": "http-server ./www", "test": "echo \"Error: no test specified\" && exit 1" }, "author": "", - "license": "ISC" + "license": "ISC", + "devDependencies": { + "http-server": "^14.1.1" + } }