32 lines
993 B
JSON
32 lines
993 B
JSON
{
|
|
"name": "walkah.blog",
|
|
"version": "1.0.0",
|
|
"description": "The new blog. Just like the old blog.",
|
|
"scripts": {
|
|
"build": "run-s clean prod css:prod",
|
|
"clean": "rimraf ./_site",
|
|
"css:prod": "tailwindcss -i ./css/style.css -o ./_site/css/style.css --minify",
|
|
"css:dev": "tailwindcss -i ./css/style.css -o ./_site/css/style.css --watch",
|
|
"dev": "eleventy --serve --watch --port=8000",
|
|
"prod": "eleventy",
|
|
"start": "run-p clean css:dev dev"
|
|
},
|
|
"author": {
|
|
"name": "James Walker",
|
|
"email": "walkah@walkah.net",
|
|
"url": "https://walkah.net/"
|
|
},
|
|
"license": "MIT",
|
|
"devDependencies": {
|
|
"@11ty/eleventy": "^2.0.0",
|
|
"@11ty/eleventy-navigation": "^0.3.3",
|
|
"@11ty/eleventy-plugin-rss": "^1.0.9",
|
|
"@tailwindcss/typography": "^0.5.2",
|
|
"@tryghost/content-api": "^1.9.4",
|
|
"dotenv": "^16.0.1",
|
|
"eleventy-plugin-local-images": "^0.4.1",
|
|
"npm-run-all": "^4.1.5",
|
|
"rimraf": "^4.1.2",
|
|
"tailwindcss": "^3.0.24"
|
|
}
|
|
} |