This repository has been archived by the owner on Jul 5, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 369
/
package.json
95 lines (95 loc) · 3.42 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
{
"name": "terraform-website",
"description": "Documentation website for Terraform",
"version": "1.0.0",
"author": "HashiCorp",
"engines": {
"node": ">= 14.x",
"npm": ">= 7.0.0"
},
"dependencies": {
"@happykit/flags": "^3.0.0",
"@hashicorp/design-system-tokens": "^1.4.1",
"@hashicorp/flight-icons": "^2.12.0",
"@hashicorp/mktg-assets": "^2.0.0-alpha.0",
"@hashicorp/mktg-global-styles": "^4.5.0",
"@hashicorp/mktg-logos": "^1.3.5",
"@hashicorp/platform-analytics": "^0.11.0",
"@hashicorp/platform-cms": "^0.3.0",
"@hashicorp/platform-code-highlighting": "^0.1.2",
"@hashicorp/platform-edge-utils": "^0.1.1",
"@hashicorp/platform-runtime-error-monitoring": "^0.1.0",
"@hashicorp/platform-util": "^0.2.0",
"@hashicorp/react-accordion": "^3.0.2",
"@hashicorp/react-alert-banner": "7.0.3",
"@hashicorp/react-button": "^6.3.0",
"@hashicorp/react-call-to-action": "^5.2.0",
"@hashicorp/react-code-block": "^6.2.2",
"@hashicorp/react-command-line-terminal": "^3.0.0",
"@hashicorp/react-consent-manager": "^9.0.0",
"@hashicorp/react-docs-page": "^17.7.1",
"@hashicorp/react-hashi-stack-menu": "^3.0.0",
"@hashicorp/react-head": "^3.3.2",
"@hashicorp/react-hero": "8.0.4",
"@hashicorp/react-image": "^4.0.4",
"@hashicorp/react-inline-svg": "^6.1.0",
"@hashicorp/react-intro": "^0.7.1",
"@hashicorp/react-link-wrap": "^3.1.0",
"@hashicorp/react-product-downloads-page": "^2.9.0",
"@hashicorp/react-section-header": "^5.0.4",
"@hashicorp/react-standalone-link": "^0.4.0",
"@hashicorp/react-stepped-feature-list": "^4.0.4",
"@hashicorp/react-subnav": "^9.5.2",
"@hashicorp/react-text-split": "^5.0.0",
"@hashicorp/react-text-split-with-code": "^3.4.3",
"@hashicorp/react-text-split-with-image": "^4.3.1",
"@hashicorp/react-vertical-text-block-list": "^7.0.1",
"@reach/dialog": "^0.18.0",
"@reach/visually-hidden": "^0.18.0",
"framer-motion": "^7.10.3",
"next": "^13.2.3",
"react": "^18.2.0",
"react-datocms": "^4.0.9",
"react-dom": "^18.2.0",
"react-player": "^2.11.2",
"semver": "^7.3.8"
},
"devDependencies": {
"@hashicorp/platform-cli": "^2.6.0",
"@hashicorp/platform-configs": "^0.2.0",
"@hashicorp/platform-nextjs-plugin": "^4.2.0",
"@hashicorp/platform-postcss-config": "^0.2.0",
"@hashicorp/platform-types": "^0.3.0",
"@types/glob": "^8.1.0",
"@types/react": "^17.0.53",
"@types/react-dom": "^17.0.19",
"postcss": "^8.4.21",
"postcss-flexbugs-fixes": "^5.0.2",
"postcss-normalize": "^10.0.1",
"postcss-preset-env": "^7.8.3",
"prettier": "2.8.4",
"remark": "^14.0.1",
"remark-gfm": "^3.0.1",
"remark-mdx": "^1.6.22",
"ts-node": "^10.9.1",
"typescript": "^4.6.2",
"unist-util-visit": "^2.0.3"
},
"overrides": {
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"main": "index.js",
"scripts": {
"build": "next build",
"build:deploy-preview": "npx ts-node --transpile-only ./scripts/content-repo-preview/build.ts",
"update-submodules": "git submodule update --init --recursive",
"format": "next-hashicorp format",
"generate:component": "next-hashicorp generate component",
"generate:readme": "next-hashicorp markdown-blocks README.md",
"lint": "next-hashicorp lint",
"start": "next dev",
"static": "npm run build && npm run export",
"linkcheck": "linkcheck <website url>"
}
}