-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
72 lines (72 loc) · 2.12 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
{
"name": "nrchkb-website",
"description": "NRCHKB Website",
"version": "1.52.0",
"hugo-bin": {
"buildTags": "extended"
},
"browserslist": [
"defaults"
],
"repository": "https://github.com/NRCHKB/NRCHKB.github.io",
"license": "MIT",
"publishConfig": {
"access": "public"
},
"scripts": {
"init": "rimraf public resources && ts-node utils/frontmatter/fetch-github-contributors.ts && ts-node utils/frontmatter/update-contributors.ts && ts-node utils/generate-changelog.ts",
"start": "npm run init && hugo server --disableFastRender",
"build": "npm run init && hugo",
"build:preview": "npm run init && hugo --environment netlify",
"lint": "eslint assets/js config && stylelint \"assets/scss/**/*.{css,sass,scss,sss,less}\" && markdownlint *.md content/**/*.md",
"release": "standard-version",
"server": "hugo server",
"test": "npm run -s lint",
"env": "env",
"precheck": "npm version",
"check": "hugo version",
"postinstall": "ts-node utils/generate-wiki-pages.ts",
"prepare": "husky install"
},
"devDependencies": {
"@babel/cli": "^7.24",
"@babel/core": "^7.24",
"@babel/preset-env": "^7.24",
"@fullhuman/postcss-purgecss": "^4.1",
"@types/glob": "^7.2.0",
"@types/node": "^20.14.8",
"autoprefixer": "^10.4",
"axios": "^1.7.2",
"bootstrap": "^5.3.3",
"clipboard": "^2.0",
"eslint": "^8.10",
"glob": "^7.2.0",
"hap-nodejs": "^0.12.2",
"highlight.js": "^11.9.0",
"hugo-bin": "^0.76",
"husky": "^9.0.11",
"instant.page": "^5.2",
"lazysizes": "^5.3",
"markdownlint-cli": "^0.41",
"node-red-contrib-homekit-bridged": "^1.6.1",
"postcss": "^8.4",
"postcss-cli": "^8.3",
"prettier": "^3.3.2",
"purgecss-whitelister": "^2.4",
"rimraf": "^5.0",
"shx": "^0.3.4",
"standard-version": "^9.5",
"stylelint": "^13.13",
"stylelint-config-standard": "^22.0",
"ts-node": "^10.9.2",
"typescript": "^5.5.2"
},
"author": {
"name": "Tadeusz Wyrzykowski",
"email": "[email protected]",
"url": "https://github.com/Shaquu"
},
"engines": {
"node": ">=16"
}
}