open-nomad/website/package.json

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

34 lines
939 B
JSON
Raw Normal View History

2020-02-06 23:45:31 +00:00
{
"name": "nomad-docs-platform",
2020-12-07 22:04:11 +00:00
"description": "Documentation website for Nomad",
"version": "1.0.0",
2020-02-06 23:45:31 +00:00
"author": "HashiCorp",
"engines": {
2021-12-13 21:21:57 +00:00
"node": "14.x - 16.x",
2021-10-05 18:31:14 +00:00
"npm": ">=7.0.0"
},
2020-02-06 23:45:31 +00:00
"devDependencies": {
"@hashicorp/platform-cli": "^2.6.0",
"@hashicorp/platform-content-conformance": "^0.0.10",
"dart-linkcheck": "^2.0.15",
"husky": "4.3.8",
"next": "^12.3.1",
"prettier": "2.2.1"
2020-02-06 23:45:31 +00:00
},
"husky": {
"hooks": {
"pre-commit": "next-hashicorp precommit"
}
},
"scripts": {
"build": "./scripts/website-build.sh",
2020-02-06 23:45:31 +00:00
"format": "next-hashicorp format",
"generate:component": "next-hashicorp generate component",
2020-06-01 21:48:25 +00:00
"generate:readme": "next-hashicorp markdown-blocks README.md",
2020-02-06 23:45:31 +00:00
"lint": "next-hashicorp lint",
"start": "./scripts/website-start.sh",
"linkcheck": "linkcheck https://www.nomadproject.io",
"content-check": "hc-content --config base-docs"
2020-02-06 23:45:31 +00:00
}
}