From 034257635a56ba55a41cd6bdb8527120f7e28815 Mon Sep 17 00:00:00 2001 From: HallexCosta Date: Thu, 1 Feb 2024 21:40:16 -0300 Subject: [PATCH] feat: add new dev dependencies http-server --- package.json | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/package.json b/package.json index 2151988f..c675b440 100644 --- a/package.json +++ b/package.json @@ -5,13 +5,15 @@ "author": "", "license": "ISC", "devDependencies": { + "http-server": "^14.1.1", "nullstack": "~0.18.0", - "tailwindcss": "^3.0.0", - "postcss-loader": "^7.0.1" + "postcss-loader": "^7.0.1", + "tailwindcss": "^3.0.0" }, "scripts": { "start": "npx nullstack start", "build": "npx nullstack build --mode=ssg --output=docs", + "start:docs": "npx http-server docs", "reinstall": "rm -rf .development .production package-lock.json node_modules && npm install" }, "dependencies": { @@ -27,4 +29,4 @@ "remarkable-meta": "^1.0.1", "yaml": "^1.10.0" } -} \ No newline at end of file +}