aboutsummaryrefslogtreecommitdiff
path: root/package.json
diff options
context:
space:
mode:
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"
}
}