forked from Masumrahmanhasan/mf-blogstarter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 1.2 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
{
"name": "mf-blogstarter",
"version": "1.0.0",
"description": "Eleventy + Tailwind CSS blog starter",
"author": "Marc FILLEUL",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/marcfilleul/mf-blogstarter"
},
"browserslist": [
"defaults"
],
"scripts": {
"build": "del-cli dist && eleventy && npm-run-all build:css build:html",
"build:css": "cross-env NODE_ENV=production postcss src/_css/app.css -o src/_includes/css/style.min.css",
"build:html": "cross-env ELEVENTY_ENV=production eleventy",
"watch": "npm-run-all --parallel watch:css watch:html",
"watch:css": "postcss src/_css/app.css -o src/assets/style.css --watch",
"watch:html": "eleventy --serve --port=1982",
"dev": "del-cli dist && npm run watch"
},
"dependencies": {
"@11ty/eleventy": "0.11.0",
"@11ty/eleventy-plugin-syntaxhighlight": "^3.0.1",
"@tailwindcss/ui": "^0.1.2",
"autoprefixer": "^9.7.2",
"cross-env": "^7.0.0",
"del-cli": "^3.0.0",
"html-minifier": "^4.0.0",
"luxon": "^1.21.2",
"npm-run-all": "^4.1.5",
"postcss-cli": "^6.1.3",
"tailwindcss": "^1.2.0",
"tailwindcss-dark-mode": "^1.1.3",
"terser": "^4.6.3"
}
}