From b7d02ad83fe0f8d8f9447bbad5dd176d644503bb Mon Sep 17 00:00:00 2001 From: Pranav Singh Date: Thu, 26 Oct 2023 02:55:43 +0530 Subject: [PATCH] add package.json Signed-off-by: Pranav Singh --- .gitignore | 6 +++++- package.json | 7 +++++++ 2 files changed, 12 insertions(+), 1 deletion(-) create mode 100644 package.json diff --git a/.gitignore b/.gitignore index 507a2c2c..edf0246a 100644 --- a/.gitignore +++ b/.gitignore @@ -11,6 +11,10 @@ # Output of the go coverage tool, specifically when used with LiteIDE *.out +# build output +package-lock.json +/node_modules/ + # Dependency directories (remove the comment below to include it) # vendor/ @@ -20,4 +24,4 @@ # Hugo output /public /resources/ -.hugo_build.lock \ No newline at end of file +.hugo_build.lock diff --git a/package.json b/package.json new file mode 100644 index 00000000..32f52176 --- /dev/null +++ b/package.json @@ -0,0 +1,7 @@ +{ + "private": true, + "devDependencies": { + "autoprefixer": "^9.8.4", + "postcss-cli": "^7.1.1" + } +} \ No newline at end of file