blog/package.json

31 lines
935 B
JSON
Raw Normal View History

2022-05-10 21:41:47 -04:00
{
"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",
"prod": "eleventy",
"start": "run-p clean css:dev dev"
2022-05-10 21:41:47 -04:00
},
"author": {
"name": "James Walker",
"email": "walkah@walkah.net",
"url": "https://walkah.net/"
},
"license": "MIT",
"devDependencies": {
"@11ty/eleventy": "^1.0.1",
"@11ty/eleventy-navigation": "^0.3.3",
2022-05-19 22:08:42 -04:00
"@11ty/eleventy-plugin-rss": "^1.0.9",
"@tailwindcss/typography": "^0.5.2",
2022-05-19 22:08:42 -04:00
"@tryghost/content-api": "^1.9.4",
2022-06-01 20:25:34 -04:00
"dotenv": "^16.0.1",
"npm-run-all": "^4.1.5",
"rimraf": "^3.0.2",
2022-06-01 20:25:34 -04:00
"tailwindcss": "^3.0.24"
2022-05-10 21:41:47 -04:00
}
}