-
Notifications
You must be signed in to change notification settings - Fork 4.3k
/
Copy pathpackage.json
37 lines (37 loc) · 1.1 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
{
"name": "vault-docs",
"description": "HashiCorp Vault documentation website",
"version": "1.0.0",
"author": "HashiCorp",
"devDependencies": {
"@hashicorp/platform-cli": "^2.6.0",
"@hashicorp/platform-content-conformance": "^0.0.9",
"dart-linkcheck": "2.0.15",
"next": "^14.0.4",
"prettier": "2.2.1",
"simple-git-hooks": "^2.6.1"
},
"engines": {
"npm": ">=9.6.7",
"node": ">=18.17.0 <= 20.x"
},
"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",
"content-check": "hc-content --config base-docs"
},
"simple-git-hooks": {
"pre-commit": "cd website && ./node_modules/.bin/next-hashicorp precommit"
}
}