-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 744 Bytes
/
package.json
File metadata and controls
29 lines (29 loc) · 744 Bytes
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
{
"name": "mbuffa.github.io",
"version": "1.0.0",
"description": "This is my humble homepage built with [Zola](https://www.getzola.org/documentation/deployment/github-pages/).",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"serve": "npx npm-watch",
"watch": "npm run build",
"build": "npx tailwindcss@3 -i ./css/main.css -o ./public/main.css --minify"
},
"watch": {
"watch": {
"patterns": [
"css/**/**",
"templates/**/**"
],
"extensions": "css,html",
"quiet": true
}
},
"author": "Maxime Buffa",
"dependencies": {
"tailwindcss": "^3.4.18",
"brace-expansion": ">= 2.0.2"
},
"devDependencies": {
"npm-watch": "^0.13.0"
}
}