-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
75 lines (75 loc) · 2.78 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
{
"name": "@caefisica/web",
"version": "0.9.6",
"private": true,
"author": "David Duran <contacto@altmails.com> (https://totallynotdavid.github.io/)",
"repository": {
"type": "git",
"url": "https://github.com/caefisica/web.git"
},
"funding": {
"type": "individual",
"url": "https://github.com/sponsors/totallynotdavid"
},
"engines": {
"node": ">=18.0.0"
},
"browserslist": [
"defaults"
],
"scripts": {
"init": "shx rm -rf .git && git init -b master",
"clean": "npm run clean:build && npm run clean:packages",
"clean:build": "shx rm -rf public resources",
"clean:packages": "shx rm -rf node_modules pnpm-lock.yaml",
"hugo:create": "exec-bin node_modules/.bin/hugo/hugo new",
"hugo:start": "exec-bin node_modules/.bin/hugo/hugo server --disableFastRender",
"hugo:start:lan": "exec-bin node_modules/.bin/hugo/hugo server --bind=0.0.0.0 --baseURL=http://192.168.18.218 --port=1313",
"build": "npm run copy:katex-fonts && exec-bin node_modules/.bin/hugo/hugo --gc --minify",
"build:lan": "npm run copy:katex-fonts && exec-bin node_modules/.bin/hugo/hugo --gc --minify --baseURL=http://192.168.18.218",
"build:preview": "npm run build -D -F",
"hugo:version": "exec-bin node_modules/.bin/hugo/hugo version",
"lint": "npm run lint:scripts && npm run lint:styles && npm run lint:markdown",
"lint:scripts": "eslint assets/js config functions",
"lint:styles": "stylelint \"assets/scss/**/*.{css,sass,scss,sss,less}\"",
"lint:markdown": "markdownlint-cli2 \"**/*.md\" \"!node_modules/**\"",
"test": "npm run lint",
"copy:katex-fonts": "shx cp ./node_modules/katex/dist/fonts/* ./static/fonts/",
"postinstall": "hugo-installer --version otherDependencies.hugo --extended --destination node_modules/.bin/hugo",
"version": "auto-changelog -p && git add CHANGELOG.md",
"serve": "netlify functions:serve"
},
"devDependencies": {
"@fullhuman/postcss-purgecss": "^6.0.0",
"@hyas/images": "^3.1.0",
"auto-changelog": "^2.4",
"autoprefixer": "^10.4.19",
"bootstrap": "^5.3.0",
"clipboard": "^2.0.11",
"dotenv": "^16.4.5",
"encoding": "^0.1.13",
"eslint": "^9.1.1",
"exec-bin": "^1.0.0",
"globals": "^15.1.0",
"highlight.js": "^11.9.0",
"hugo-installer": "^4.0",
"instant.page": "^5.1",
"katex": "^0.16.10",
"lazysizes": "^5.3.2",
"markdownlint-cli2": "^0.13.0",
"mermaid": "^10.9.0",
"node-fetch": "^3.3.0",
"pdfjs-dist": "^4.2.67",
"postcss": "^8.4.38",
"postcss-cli": "^11.0.0",
"prettier": "3.2.5",
"prettier-plugin-go-template": "^0.0.15",
"purgecss-whitelister": "^2.4",
"shx": "^0.3.4",
"stylelint": "^16.5.0",
"stylelint-config-standard-scss": "^13.0.0"
},
"otherDependencies": {
"hugo": "0.125.2"
}
}