packer-cn/website/package.json

56 lines
1.9 KiB
JSON
Raw Normal View History

2020-03-18 18:46:47 -04:00
{
"name": "packer-docs",
"description": "Documentation website for HashiCorp Packer",
"version": "1.0.0",
2020-03-18 18:46:47 -04:00
"author": "HashiCorp",
"dependencies": {
2020-07-02 09:14:19 -04:00
"@hashicorp/nextjs-scripts": "^10.0.2",
"@hashicorp/react-button": "^2.2.1",
"@hashicorp/react-content": "^4.0.0",
"@hashicorp/react-docs-page": "^4.0.0",
"@hashicorp/react-docs-sidenav": "^3.2.5",
"@hashicorp/react-global-styles": "^4.4.0",
"@hashicorp/react-head": "^1.1.1",
2020-03-18 18:46:47 -04:00
"@hashicorp/react-mega-nav": "^4.0.1-2",
2020-07-02 09:14:19 -04:00
"@hashicorp/react-product-downloader": "^4.0.2",
2020-03-18 18:46:47 -04:00
"@hashicorp/react-section-header": "^2.0.0",
2020-07-02 09:14:19 -04:00
"@hashicorp/react-subnav": "^3.2.3",
2020-03-18 18:46:47 -04:00
"@hashicorp/react-vertical-text-block-list": "^2.0.1",
2020-06-29 15:43:35 -04:00
"algoliasearch": "^4.3.0",
2020-03-18 18:46:47 -04:00
"babel-plugin-import-glob-array": "^0.2.0",
2020-06-29 15:43:35 -04:00
"dotenv": "^8.2.0",
"gray-matter": "^4.0.2",
"imagemin-mozjpeg": "^9.0.0",
"imagemin-optipng": "^8.0.0",
"imagemin-svgo": "^8.0.0",
"next": "9.4.4",
2020-03-24 20:03:49 -04:00
"react": "^16.13.1",
"react-dom": "^16.13.1"
2020-03-18 18:46:47 -04:00
},
"devDependencies": {
2020-03-24 20:03:49 -04:00
"dart-linkcheck": "^2.0.15",
2020-03-18 18:46:47 -04:00
"glob": "^7.1.6",
2020-04-24 04:26:36 -04:00
"husky": "^4.2.5",
2020-03-18 18:46:47 -04:00
"inquirer": "^7.1.0",
2020-04-24 04:26:36 -04:00
"prettier": "^2.0.5"
2020-03-18 18:46:47 -04:00
},
"husky": {
"hooks": {
"pre-commit": "next-hashicorp precommit"
}
},
"main": "index.js",
"scripts": {
"build": "node --max-old-space-size=2048 ./node_modules/.bin/next build",
"dynamic": "NODE_ENV=production next build && next start",
"export": "node --max-old-space-size=2048 ./node_modules/.bin/next export",
"format": "next-hashicorp format",
"generate:component": "next-hashicorp generate component",
"generate:readme": "next-hashicorp markdown-blocks README.md",
2020-03-18 18:46:47 -04:00
"lint": "next-hashicorp lint",
"start": "rm -rf .next/cache/next-babel-loader/ && next dev",
"static": "npm run build && npm run export && cp _redirects out/.",
2020-04-07 17:50:07 -04:00
"linkcheck": "linkcheck https://packer.io"
2020-03-18 18:46:47 -04:00
}
}