Skip to content

Commit

Permalink
chore(deps): update various deps
Browse files Browse the repository at this point in the history
  • Loading branch information
darbyjack committed Oct 11, 2023
1 parent f35f667 commit 556e49c
Show file tree
Hide file tree
Showing 4 changed files with 159 additions and 161 deletions.
1 change: 0 additions & 1 deletion components/Converter.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -154,7 +154,6 @@ const Converter = ({
`}
>
<TextBox
key={config.name}
title={config.name}
language={"yaml"}
code={parsedConfigs ? parsedConfigs[key] ?? "" : ""}
Expand Down
22 changes: 11 additions & 11 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,9 @@
"start": "next start"
},
"dependencies": {
"@fortawesome/fontawesome-free": "6.4.0",
"@fortawesome/fontawesome-svg-core": "6.4.0",
"@fortawesome/free-solid-svg-icons": "6.4.0",
"@fortawesome/fontawesome-free": "6.4.2",
"@fortawesome/fontawesome-svg-core": "6.4.2",
"@fortawesome/free-solid-svg-icons": "6.4.2",
"@fortawesome/react-fontawesome": "0.2.0",
"@js.properties/properties": "0.5.4",
"@microlink/react-json-view": "^1.22.2",
Expand All @@ -27,21 +27,21 @@
"toml": "3.0.0",
"x2js": "3.4.4",
"xml-js": "1.6.11",
"yaml": "2.2.1"
"yaml": "2.3.2"
},
"devDependencies": {
"@types/node": "18.15.11",
"@types/prismjs": "1.26.0",
"@types/react": "18.0.31",
"@types/styled-components": "5.1.26",
"@types/prismjs": "1.26.1",
"@types/react": "18.2.28",
"@types/styled-components": "5.1.28",
"babel-plugin-macros": "3.1.0",
"eslint": "8.37.0",
"eslint": "8.51.0",
"eslint-config-next": "12.3.4",
"prettier": "2.8.7",
"tailwindcss": "3.3.1",
"ts-json-schema-generator": "1.2.0",
"tailwindcss": "3.3.3",
"ts-json-schema-generator": "1.3.0",
"ts-node": "10.9.1",
"twin.macro": "3.3.0",
"twin.macro": "3.4.0",
"typescript": "4.8.4"
},
"babelMacros": {
Expand Down
6 changes: 4 additions & 2 deletions pages/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,9 @@ function Home() {
>
<p css={tw`text-lg text-brightblue`}>Introducing the all new</p>
<div css={tw`text-white text-center space-y-12`}>
<p css={tw`text-5xl font-bold overflow-hidden`}>HelpChat Toolbox Beta™</p>
<p css={tw`text-5xl font-bold overflow-hidden`}>
HelpChat Toolbox Beta™
</p>
<p css={tw`text-base text-lightgray`}>
A collection of tools and solutions you might find useful for you
and your server.
Expand Down Expand Up @@ -72,8 +74,8 @@ function Home() {

function toolsToCard(tools: ToolboxTool[]) {
return tools.map((tool) => (
// eslint-disable-next-line react/jsx-key
<ToolboxCard
key={tool.short}
name={tool.name}
icon={tool.icon}
description={tool.description}
Expand Down
Loading

0 comments on commit 556e49c

Please sign in to comment.