generated from philhawksworth/eleventail
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
31 lines (31 loc) · 1001 Bytes
/
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
{
"name": "pnzdevs-blog",
"version": "0.1.0",
"description": "A simple landing site complete with blog section powered by node",
"author": "PNZ Devs",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/tiapnn/pnzdevs-blog"
},
"scripts": {
"build": "npm-run-all build:css build:html",
"build:css": "postcss src/site/_includes/css/tailwind.css -o src/site/css/styles.css",
"build:html": "eleventy",
"watch": "npm-run-all --parallel watch:css watch:html",
"watch:css": "postcss src/site/_includes/css/tailwind.css -o src/site/css/styles.css --watch",
"watch:html": "eleventy --serve --port=8181",
"start": "npm run watch"
},
"dependencies": {
"@11ty/eleventy": "^0.9.0",
"@fullhuman/postcss-purgecss": "^1.3.0",
"autoprefixer": "^9.7.2",
"cssnano": "^4.1.10",
"html-minifier": "^4.0.0",
"luxon": "^1.21.2",
"npm-run-all": "^4.1.5",
"postcss-cli": "^6.1.3",
"tailwindcss": "^1.1.4"
}
}