forked from hashicorp/nomad
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
68 lines (68 loc) · 2.34 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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
{
"name": "nomad-docs-platform",
"description": "Description of your website",
"version": "0.0.1",
"author": "HashiCorp",
"engines": {
"node": "12.x"
},
"dependencies": {
"@hashicorp/nextjs-scripts": "^13.2.0",
"@hashicorp/react-alert-banner": "4.2.0",
"@hashicorp/react-button": "3.0.2",
"@hashicorp/react-call-to-action": "0.2.8",
"@hashicorp/react-case-study-slider": "3.0.0",
"@hashicorp/react-content": "5.2.1",
"@hashicorp/react-docs-page": "6.3.1",
"@hashicorp/react-docs-sidenav": "5.2.1",
"@hashicorp/react-global-styles": "4.6.1",
"@hashicorp/react-hashi-stack-menu": "^1.0.8",
"@hashicorp/react-head": "1.1.4",
"@hashicorp/react-hero": "3.1.9",
"@hashicorp/react-image": "3.0.1",
"@hashicorp/react-inline-svg": "1.0.2",
"@hashicorp/react-product-downloader": "4.1.5",
"@hashicorp/react-search": "^2.1.2",
"@hashicorp/react-section-header": "3.0.0",
"@hashicorp/react-subnav": "6.0.0",
"@hashicorp/react-text-and-content": "4.1.8",
"@hashicorp/react-text-split": "0.4.4",
"@hashicorp/react-text-split-with-code": "0.2.4",
"@hashicorp/react-text-split-with-image": "1.4.4",
"@hashicorp/react-use-cases": "2.0.1",
"@hashicorp/react-vertical-text-block-list": "3.0.0",
"babel-plugin-import-glob-array": "0.2.0",
"dotenv": "^8.2.0",
"imagemin-mozjpeg": "9.0.0",
"imagemin-optipng": "8.0.0",
"imagemin-svgo": "8.0.0",
"marked": "0.7.0",
"next": "9.5.2",
"nuka-carousel": "4.7.1",
"react": "16.14.0",
"react-device-detect": "1.14.0",
"react-dom": "16.14.0"
},
"devDependencies": {
"dart-linkcheck": "2.0.15",
"husky": "4.3.0",
"prettier": "2.1.2"
},
"husky": {
"hooks": {
"pre-commit": "next-hashicorp precommit"
}
},
"main": "index.js",
"scripts": {
"build": "node --max-old-space-size=2048 ./node_modules/.bin/next build",
"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",
"lint": "next-hashicorp lint",
"start": "rm -rf .next/cache/next-babel-loader/ && next dev",
"static": "npm run build && npm run export",
"linkcheck": "linkcheck https://www.nomadproject.io"
}
}