pages/package.json
2024-10-04 18:45:51 +09:00

50 lines
1.7 KiB
JSON

{
"name": "vredeburg",
"version": "2.0.0",
"description": "A simple starter project to create a blog using Eleventy and Tailwind CSS",
"scripts": {
"start": "npm run serve",
"watch": "concurrently -c auto npm:css:watch npm:11ty:watch",
"serve": "concurrently -c auto npm:css:watch npm:11ty:serve",
"build": "npm run css:build && npm run 11ty:build",
"debug": "cross-env DEBUG=Eleventy* npm run build",
"11ty:watch": "cross-env NODE_ENV=development eleventy --watch --incremental",
"11ty:serve": "cross-env NODE_ENV=development eleventy --serve --incremental",
"11ty:build": "cross-env NODE_ENV=production eleventy",
"css:watch": "tailwindcss -i src/assets/css/main.css -o dist/assets/css/main.css -w",
"css:build": "tailwindcss -i src/assets/css/main.css -o dist/assets/css/main.css -m"
},
"repository": {
"type": "git",
"url": "git+https://github.com/daflh/vredeburg.git"
},
"author": "Dafiul Haq",
"license": "MIT",
"bugs": {
"url": "https://github.com/daflh/vredeburg/issues"
},
"homepage": "https://github.com/daflh/vredeburg#readme",
"devDependencies": {
"@11ty/eleventy": "^2.0.0",
"@tailwindcss/typography": "^0.5.9",
"concurrently": "^7.6.0",
"cross-env": "^7.0.3",
"dayjs": "^1.11.7",
"html-minifier": "^4.0.0",
"tailwindcss": "^3.2.4",
"terser": "^5.16.1"
},
"dependencies": {
"markdown-it": "^14.1.0",
"metascraper": "^5.45.23",
"metascraper-description": "^5.45.22",
"metascraper-image": "^5.45.22",
"metascraper-logo": "^5.45.22",
"metascraper-logo-favicon": "^5.45.22",
"metascraper-publisher": "^5.45.22",
"metascraper-title": "^5.45.22",
"metascraper-url": "^5.45.22",
"pagefind": "^1.1.1"
}
}