-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1.36 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
39
40
41
42
{
"name": "mf-blogstarter",
"version": "1.0.0",
"description": "Personal blog using MF's blogstarter template",
"author": "Ghani Rafif",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/ekickx/personal-blog"
},
"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-rss": "^1.0.9",
"@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",
"eleventy-plugin-reader-bar": "^0.2.0",
"eleventy-plugin-reading-time": "0.0.1",
"html-minifier": "^4.0.0",
"luxon": "^1.21.2",
"npm-run-all": "^4.1.5",
"postcss": "^8.0.0",
"postcss-cli": "^8.1.0",
"tailwindcss": "^1.2.0",
"tailwindcss-dark-mode": "^1.1.3",
"terser": "^4.6.3"
}
}