-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
27 lines (27 loc) · 847 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
23
24
25
26
27
{
"devDependencies": {
"@tailwindcss/typography": "^0.5.15",
"browserslist": "^4.24.3",
"caniuse-lite": "^1.0.30001690",
"concurrently": "^9.1.1",
"husky": "^9.1.7",
"lint-staged": "^15.3.0",
"prettier": "^3.4.2",
"prettier-plugin-go-template": "^0.0.15",
"tailwindcss": "^3.4.17"
},
"scripts": {
"dev": "concurrently --kill-others \"npm run server\" \"npm run watch\"",
"server": "hugo server -D --navigateToChanged",
"watch": "npx tailwindcss -i ./assets/css/input.css -o ./assets/css/custom.css --watch",
"build": "npx tailwindcss -i ./assets/css/input.css -o ./assets/css/custom.css",
"prepare": "husky"
},
"lint-staged": {
"*.{html,json,yaml}": "prettier --write"
},
"browserslist": [
"defaults and fully supports es6-module",
"maintained node versions"
]
}