From 2707b18469436482199bc543914c68ac3bc95412 Mon Sep 17 00:00:00 2001 From: Jaafar Date: Tue, 3 Dec 2024 22:14:38 +0000 Subject: [PATCH] removed some deprecated dependencies Signed-off-by: Jaafar --- package-lock.json | 4 +--- package.json | 8 ++------ 2 files changed, 3 insertions(+), 9 deletions(-) diff --git a/package-lock.json b/package-lock.json index a32a939b..2cd2fd46 100644 --- a/package-lock.json +++ b/package-lock.json @@ -8,9 +8,7 @@ "name": "content-repo", "version": "1.0.0", "devDependencies": { - "husky": "^9.1.7", - "markdownlint-cli": "^0.29.0", - "prettier": "^3.4.1" + "markdownlint-cli": "^0.29.0" } }, "node_modules/argparse": { diff --git a/package.json b/package.json index e443d232..e3bc5f1d 100644 --- a/package.json +++ b/package.json @@ -2,13 +2,9 @@ "name": "content-repo", "version": "1.0.0", "scripts": { - "lint:md": "markdownlint '**/*.md' --ignore 'node_modules'", - "prepare": "husky install" - + "lint:md": "markdownlint '**/*.md' --ignore 'node_modules'" }, "devDependencies": { - "husky": "^9.1.7", - "markdownlint-cli": "^0.29.0", - "prettier": "^3.4.1" + "markdownlint-cli": "^0.29.0" } }