hugoWebsite/package.json

46 lines
1.1 KiB
JSON
Raw Normal View History

2022-10-29 00:20:35 +02:00
{
"name": "TailBliss",
2022-11-03 20:40:08 +01:00
"version": "0.1.1",
2022-10-29 00:20:35 +02:00
"description": "Hugo + Alpine.js + TailwindCSS",
"main": "index.js",
"devDependencies": {
"@tailwindcss/typography": "^0.5.8",
2022-11-02 22:59:11 +01:00
"alpinejs": "^3.10.5",
2022-10-29 00:20:35 +02:00
"autoprefixer": "^10.4.12",
"concurrently": "^7.6.0",
"postcss": "^8.4.19",
2022-10-29 00:20:35 +02:00
"postcss-cli": "^10.0.0",
"tailwindcss": "^3.2.4",
2022-11-06 16:29:32 +01:00
"test": "^3.2.1"
2022-10-29 00:20:35 +02:00
},
"scripts": {
"start": "concurrently npm:watch:*",
"watch:tw": "tailwindcss -i ./assets/css/main.css -o ./assets/css/style.css --watch",
"watch:hugo": "hugo server",
2022-11-02 22:59:11 +01:00
"build": "hugo --minify",
2022-11-02 23:57:18 +01:00
"test": "hugo"
2022-10-29 00:20:35 +02:00
},
"repository": {
"type": "git",
"url": "git+https://github.com/nusserstudios/tailbliss.git"
2022-10-29 00:20:35 +02:00
},
"keywords": [
"hugo",
"tailwind",
"tailwindcss",
"alpinejs",
2022-11-02 22:59:11 +01:00
"minimal",
"responsive",
"light mode",
"dark mode",
"hugo blog",
"categories",
"tags"
2022-10-29 00:20:35 +02:00
],
"author": "NusserStudios",
"license": "Apache-2.0",
2022-10-29 00:20:35 +02:00
"bugs": {
"url": "https://github.com/nusserstudios/tailbliss/issues"
2022-10-29 00:20:35 +02:00
},
2022-11-06 16:29:32 +01:00
"homepage": "https://github.com/nusserstudios/tailbliss"
2022-11-09 17:05:34 +01:00
}