-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
135 lines (135 loc) · 3.23 KB
/
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
{
"name": "@davidsneighbour/samui-samui.de",
"description": "Website and content for samui-samui.de",
"version": "1.2024.7",
"license": "UNLICENSED",
"private": true,
"repository": "davidsneighbour/samui-samui.de",
"author": {
"name": "Patrick Kollitsch",
"email": "[email protected]",
"web": "https://davids-neighbour.com"
},
"homepage": "https://samui-samui.de",
"dependencies": {
"@davidsneighbour/bootstrap-config": "2024.4.12",
"@davidsneighbour/browserslist-config": "2024.4.12",
"@davidsneighbour/commitlint-config": "2024.4.12",
"@davidsneighbour/eslint-config": "2024.4.12",
"@davidsneighbour/postcss-config": "2024.4.12",
"@davidsneighbour/release-config": "2024.4.12",
"@davidsneighbour/remark-config": "2024.4.12",
"@davidsneighbour/stylelint-config": "2024.4.12",
"@davidsneighbour/tools": "2024.4.12",
"lazysizes": "5.3.2",
"netlify-cli": "17.38.1",
"pagefind": "1.3.0",
"pixrem": "5.0.0",
"postcss": "8.4.49",
"postcss-cli": "11.0.0",
"postcss-scss": "4.0.9",
"precss": "4.0.0",
"sass": "1.83.0"
},
"devDependencies": {
"nanoid": ">=3.3.8"
},
"scripts": {
"build": "wireit",
"deploy": "wireit",
"release": "wireit",
"server": "wireit"
},
"wireit": {
"build": {
"dependencies": [
"build:pagefind"
]
},
"build:hugo": {
"command": "hugo --gc --minify",
"dependencies": [
"clean:hugo"
]
},
"build:pagefind": {
"command": "pagefind",
"dependencies": [
"build:hugo"
]
},
"clean": {
"dependencies": [
"clean:hugo"
]
},
"clean:hugo": {
"command": "rimraf hugo.log hugo_stats.json public"
},
"deploy": {
"command": "netlify deploy --prod --open",
"dependencies": [
"build"
]
},
"release": {
"command": "./bin/repo/release/postrelease",
"dependencies": [
"release:tag"
]
},
"release:tag": {
"command": "commit-and-tag-version --release-as patch --sign -a -t \"v\" --releaseCommitMessageFormat \"chore(release): v{{currentTag}}\""
},
"server": {
"command": "hugo server -D -E -F --disableFastRender --logLevel debug --tlsAuto --baseURL https://localhost/",
"dependencies": [
"clean:hugo",
"server:trust",
"config:dump"
]
},
"server:trust": {
"command": "hugo server trust"
},
"config:dump": {
"command": "hugo config --format json > data/dnb/samuisamui/config.json"
}
},
"config": {
"commitizen": {
"path": "./node_modules/cz-customizable"
}
},
"engines": {
"node": ">=20.12.0",
"npm": ">=10.3.0"
},
"browserslist": [
"extends @davidsneighbour/browserslist-config"
],
"commitlint": {
"extends": [
"@davidsneighbour/commitlint-config"
]
},
"eslintConfig": {
"extends": [
"@davidsneighbour/eslint-config"
]
},
"remarkConfig": {
"plugins": [
"@davidsneighbour/remark-config",
[
"remark-lint-write-good",
false
]
]
},
"slug": "samui-samui-de",
"stylelint": {
"extends": "@davidsneighbour/stylelint-config"
},
"type": "module"
}