-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.22 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.22 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
31
32
33
34
35
36
37
38
39
40
41
{
"name": "mvw-website",
"license": "MIT",
"version": "26.02.04",
"description": "Website of Musikverein Wollbach 1866 e.V.",
"author": "Markus Lindenmann <tiliavir@gmail.com>",
"repository": {
"type": "git",
"url": "https://github.com/Tiliavir/mvw-website.git"
},
"browserslist": [
"last 1 version",
"> 1%",
"maintained node versions",
"not dead"
],
"devDependencies": {
"@types/lunr": "2.3.7",
"autoprefixer": "10.4.27",
"eslint": "10.1.0",
"glob-all": "3.3.1",
"mvw-search-index": "2.3.6",
"postcss": "8.5.8",
"postcss-cli": "11.0.1",
"stylelint": "16.26.1",
"stylelint-config-recommended-scss": "16.0.2",
"typescript": "5.9.3",
"typescript-eslint": "8.57.2",
"vnu-jar": "26.3.24"
},
"dependencies": {
"lunr": "2.3.9"
},
"scripts": {
"validate": "node validate.mjs && echo \"\\033[33m[WARN] Validation is skipping some rules - check if still required, or if view-transitions are finally stable.\\033[0m\"",
"lint": "stylelint '**/*.scss' && npx eslint .",
"build": "hugo --minify && npm run validate",
"index": "cd ./public/ && mvw-search-index './**/*.html' './suche/index.json' 'main'",
"postinstall": "npm run lint"
}
}