-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) 路 1.81 KB
/
Copy pathpackage.json
File metadata and controls
63 lines (63 loc) 路 1.81 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
{
"author": "haliphax",
"description": "haliphax.dev source code and content",
"devDependencies": {
"@11ty/eleventy": "^3.1.6",
"@11ty/eleventy-plugin-syntaxhighlight": "^5.0.0",
"@fontsource/shrikhand": "^5.0.5",
"@types/clean-css": "^4.2.6",
"@types/html-minifier": "^4.0.2",
"@types/json-diff": "^1.0.0",
"@types/node": "^20.4.6",
"@xmldom/xmldom": "^0.8.15",
"clean-css": "^5.3.2",
"dotenv": "^16.0.3",
"esbuild": "^0.28.1",
"halfmoon": "1.1.1",
"html-minifier": "^4.0.0",
"husky": "^9.1.7",
"json-diff": "^1.0.3",
"markdown-it-anchor": "^8.6.7",
"nano-staged": "^0.8.0",
"node-twitch": "^0.5.0",
"nodemon": "^3.0.1",
"npm-run-all": "^4.1.5",
"prettier": "^3.0.0",
"prettier-plugin-organize-imports": "^3.2.3",
"purgecss": "^5.0.0",
"svgson": "^5.3.1",
"typescript": "^7.0.2"
},
"engines": {
"node": ">=22"
},
"license": "MIT",
"name": "haliphax-dot-dev",
"nano-staged": {
"*": [
"prettier -luw"
]
},
"prettier": {
"plugins": [
"prettier-plugin-organize-imports"
]
},
"private": true,
"repository": "github:haliphax/haliphax-dot-dev",
"scripts": {
"all": "npm-run-all",
"build": "npm-run-all build:ts build:11ty",
"build:11ty": "eleventy --quiet",
"build:ts": "tsc && tsc -p tasks",
"check": "npm-run-all -c -p check:*",
"check:twitch": "node tasks/check-twitch.mjs",
"check:youtube": "node tasks/check-youtube.mjs",
"clean": "rm -rf ./docs/ ./11ty/data/external/*.json 2>/dev/null; find . -type f -name '*.js' -not -wholename '**/node_modules/**' -delete",
"full": "npm-run-all clean build:ts && (npm run check || true) && npm run build:11ty",
"prepare": "husky",
"serve": "eleventy --quiet --serve",
"watch": "nodemon -e css,json,md,ts -w 11ty -w content -w static --exec 'npm run build:ts && npm run serve -- --watch'"
},
"version": "1.0.0"
}