aboutsummaryrefslogtreecommitdiff
path: root/package.json
diff options
context:
space:
mode:
authorIndrajith K L2022-08-28 00:41:33 +0530
committerIndrajith K L2022-08-28 00:41:33 +0530
commit191fb0c0aa31a5142f81ea6f7fcf253b10f0297c (patch)
tree019ad6000e0be1e01779a962b42ce437e84aaed9 /package.json
parent7524f9aa94368d28250813a4e3bad965d178aa7c (diff)
downloadindrajith-dev-191fb0c0aa31a5142f81ea6f7fcf253b10f0297c.tar.gz
indrajith-dev-191fb0c0aa31a5142f81ea6f7fcf253b10f0297c.tar.bz2
indrajith-dev-191fb0c0aa31a5142f81ea6f7fcf253b10f0297c.zip
* Project Restructred
* Adds Tailwind * Completed Intro Page, About, Posts Listing * Changes build and development scripts
Diffstat (limited to 'package.json')
-rw-r--r--package.json17
1 files changed, 14 insertions, 3 deletions
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"
}
}