forked from devopsdojoconsortium/dojoconsortium.org
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 1.04 KB
/
package.json
File metadata and controls
30 lines (30 loc) · 1.04 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
{
"name": "dojoconsortium.org",
"version": "2.0.0",
"description": "Enterprise Dojo Consortium",
"repository": {
"type": "git",
"url": "git+https://code.il2.dso.mil/platform-one/products/holocron/engineering-website.git"
},
"scripts": {
"build": "hugo",
"postinstall": "git submodule update --init",
"link-check": "rm -rf public && npm run build && linkinator ./public --config .linkinator.config.json ",
"lint": "markdownlint ./content/**/*.md",
"lint:fix": "markdownlint -f ./content/**/*.md",
"prepare": "husky install",
"start": "hugo server",
"test": "npm run lint && npm run link-check",
"test:ci": "rm -rf public && hugo && npx check-html-links public",
"update": "hugo mod get -u ./... && hugo mod tidy && npx npm-check-updates -u && npm install"
},
"devDependencies": {
"autoprefixer": "^10.4.20",
"husky": "^9.1.6",
"linkinator": "^6.1.1",
"markdownlint-cli": "^0.42.0",
"postcss": "^8.4.47",
"postcss-cli": "^11.0.0",
"start-server-and-test": "^2.0.8"
}
}