-
Notifications
You must be signed in to change notification settings - Fork 542
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 1.19 KB
/
package.json
File metadata and controls
30 lines (30 loc) · 1.19 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
{
"name": "hugo-paper",
"version": "6.31.0",
"author": "nanxiaobei <nanxiaobei@gmail.com>",
"repository": "https://github.com/nanxiaobei/hugo-paper.git",
"license": "MIT",
"scripts": {
"dev:css": "postcss ./assets/app.css -o ./assets/main.css --watch",
"dev:server": "hugo server --config exampleSite/hugo.toml --contentDir exampleSite/content --gc --buildDrafts --openBrowser",
"dev": "bun dev:css & bun dev:server",
"build:go": "cp exampleSite/go.default.mod exampleSite/go.mod",
"build:css": "postcss ./assets/app.css -o ./assets/main.css",
"build:generate": "hugo --config exampleSite/hugo.toml --contentDir exampleSite/content --gc --minify",
"build": "bun build:go & bun build:css & bun build:generate"
},
"devDependencies": {
"@tailwindcss/cli": "^4.1.18",
"@tailwindcss/postcss": "^4.1.18",
"@tailwindcss/typography": "^0.5.19",
"autoprefixer": "^10.4.23",
"postcss": "^8.5.6",
"postcss-cli": "^11.0.1",
"postcss-preset-env": "^11.1.2",
"prettier": "^3.8.1",
"prettier-plugin-css-order": "^2.2.0",
"prettier-plugin-organize-imports": "^4.3.0",
"prettier-plugin-tailwindcss": "^0.7.2",
"tailwindcss": "^4.1.18"
}
}