36 lines
1011 B
JSON
36 lines
1011 B
JSON
{
|
|
"name": "vault-docs",
|
|
"description": "HashiCorp Vault documentation website",
|
|
"version": "1.0.0",
|
|
"author": "HashiCorp",
|
|
"devDependencies": {
|
|
"@hashicorp/platform-cli": "^1.2.0",
|
|
"dart-linkcheck": "2.0.15",
|
|
"next": "^12.3.1",
|
|
"prettier": "2.2.1",
|
|
"simple-git-hooks": "^2.6.1"
|
|
},
|
|
"engines": {
|
|
"npm": ">=7.0.0",
|
|
"node": ">=12.0.0"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/hashicorp/vault",
|
|
"directory": "website"
|
|
},
|
|
"scripts": {
|
|
"build": "./scripts/website-build.sh",
|
|
"format": "next-hashicorp format",
|
|
"generate:component": "next-hashicorp generate component",
|
|
"generate:readme": "next-hashicorp markdown-blocks README.md",
|
|
"linkcheck": "linkcheck https://www.vaultproject.io",
|
|
"lint": "next-hashicorp lint",
|
|
"postinstall": "simple-git-hooks",
|
|
"start": "./scripts/website-start.sh"
|
|
},
|
|
"simple-git-hooks": {
|
|
"pre-commit": "cd website && ./node_modules/.bin/next-hashicorp precommit"
|
|
}
|
|
}
|