-
Notifications
You must be signed in to change notification settings - Fork 508
/
Copy pathpackage.json
22 lines (22 loc) · 909 Bytes
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{
"name": "hugo-paper",
"version": "6.29.0",
"repository": "https://github.com/nanxiaobei/hugo-paper.git",
"author": "nanxiaobei <[email protected]>",
"license": "MIT",
"scripts": {
"dev:css": "npx @tailwindcss/cli -i ./assets/app.css -o ./assets/main.css --watch",
"dev:server": "hugo server --config exampleSite/hugo.toml --contentDir exampleSite/content --gc --buildDrafts --openBrowser",
"dev": "killall hugo & pnpm dev:css & pnpm dev:server",
"build:go": "cp exampleSite/go.default.mod exampleSite/go.mod",
"build:generate": "hugo --config exampleSite/hugo.toml --contentDir exampleSite/content --gc --minify",
"build": "pnpm build:go & pnpm build:generate"
},
"dependencies": {
"@tailwindcss/cli": "^4.0.8",
"@tailwindcss/typography": "^0.5.16",
"prettier": "^3.5.2",
"prettier-plugin-tailwindcss": "^0.6.11",
"tailwindcss": "^4.0.8"
}
}