-
Notifications
You must be signed in to change notification settings - Fork 18
/
package.json
65 lines (65 loc) · 2.17 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
{
"name": "@jptosso/coraza.io",
"description": "Coraza.io website",
"version": "0.1.0",
"browserslist": [
"defaults"
],
"repository": "https://github.com/jptosso/coraza.io",
"license": "Apache2",
"publishConfig": {
"access": "public"
},
"scripts": {
"init": "shx rm -rf .git && git init -b main",
"create": "exec-bin bin/hugo/hugo new",
"prestart": "npm run clean",
"start": "exec-bin bin/hugo/hugo server --bind=0.0.0.0 --disableFastRender",
"prebuild": "npm run clean",
"build": "exec-bin bin/hugo/hugo --gc --minify",
"build:preview": "npm run build -D -F",
"clean": "shx rm -rf public resources",
"clean:install": "shx rm -rf package-lock.json bin node_modules ",
"lint": "npm run -s lint:scripts && npm run -s lint:styles && npm run -s lint:markdown",
"lint:scripts": "eslint assets/js config functions",
"lint:styles": "stylelint \"assets/scss/**/*.{css,sass,scss,sss,less}\"",
"lint:markdown": "markdownlint \"*.md\" \"content/**/*.md\"",
"server": "exec-bin bin/hugo/hugo server",
"test": "npm run -s lint",
"env": "env",
"precheck": "npm version",
"check": "exec-bin bin/hugo/hugo version",
"copy:katex-fonts": "shx cp ./node_modules/katex/dist/fonts/* ./static/fonts/",
"postinstall": "hugo-installer --version otherDependencies.hugo --extended",
"version": "auto-changelog -p && git add CHANGELOG.md"
},
"devDependencies": {
"@babel/cli": "7.25.7",
"@babel/core": "7.25.8",
"@babel/preset-env": "7.25.8",
"@fullhuman/postcss-purgecss": "6.0.0",
"auto-changelog": "2.5.0",
"autoprefixer": "10.4.20",
"bootstrap": "5.3.3",
"clipboard": "2.0.11",
"eslint": "9.12.0",
"exec-bin": "1.0.0",
"hugo-installer": "4.0.1",
"flexsearch": "0.7.43",
"highlight.js": "11.10.0",
"instant.page": "5.2.0",
"katex": "0.16.11",
"lazysizes": "5.3.2",
"markdownlint-cli": "0.42.0",
"mermaid": "11.3.0",
"postcss": "8.4.47",
"postcss-cli": "11.0.0",
"purgecss-whitelister": "2.4.0",
"shx": "0.3.4",
"stylelint": "16.10.0",
"stylelint-config-standard": "36.0.1"
},
"otherDependencies": {
"hugo": "0.87.0"
}
}