forked from cmdragon/blog
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
21 lines (21 loc) · 737 Bytes
/
package.json
File metadata and controls
21 lines (21 loc) · 737 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{
"name": "cmdragon-blog",
"version": "1.0.0",
"description": "CMDragon's Blog",
"scripts": {
"dev": "npm run build:css && hugo server",
"build": "npm run build:css && hugo --gc --minify && python scripts/split_search_index.py && python scripts/split_sitemap.py",
"build:css": "tailwindcss -i ./assets/css/tailwind.css -o ./assets/css/tailwind.min.css --minify",
"clean": "hugo --cleanDestinationDir",
"preview": "npm run build && hugo server --buildDrafts --buildFuture",
"sitemap": "python scripts/split_sitemap.py"
},
"dependencies": {
"@tailwindcss/typography": "^0.5.10"
},
"devDependencies": {
"autoprefixer": "^10.4.16",
"postcss": "^8.4.31",
"tailwindcss": "^3.4.16"
}
}