From 191fb0c0aa31a5142f81ea6f7fcf253b10f0297c Mon Sep 17 00:00:00 2001 From: Indrajith K L Date: Sun, 28 Aug 2022 00:41:33 +0530 Subject: * Project Restructred * Adds Tailwind * Completed Intro Page, About, Posts Listing * Changes build and development scripts --- package.json | 17 ++++++++++++++--- 1 file changed, 14 insertions(+), 3 deletions(-) (limited to 'package.json') diff --git a/package.json b/package.json index 30be91d..11723d5 100644 --- a/package.json +++ b/package.json @@ -4,14 +4,25 @@ "description": "", "main": "index.js", "scripts": { - "start": "eleventy --serve", - "build": "eleventy" + "tailwind:process": "npx postcss src/css/styles.css --o src/_includes/assets/css/styles.css --watch", + "tailwind:build": "npx postcss src/css/styles.css --o src/_includes/assets/css/styles.css", + "serve": "eleventy --serve", + "start": "concurrently \"npm run tailwind:process\" \"npm run serve\"", + "build": "npm run tailwind:build && eleventy" }, "keywords": [], "author": "", "license": "ISC", "devDependencies": { "@11ty/eleventy": "^1.0.2", - "dayjs": "^1.11.5" + "@11ty/eleventy-plugin-syntaxhighlight": "^4.1.0", + "@tailwindcss/line-clamp": "^0.4.0", + "autoprefixer": "^10.4.8", + "concurrently": "^7.3.0", + "dayjs": "^1.11.5", + "eleventy-favicon": "^1.1.3", + "eleventy-plugin-feathericons": "^1.0.1", + "postcss-cli": "^10.0.0", + "tailwindcss": "^3.1.8" } } -- cgit v1.2.3