feat: update dependencies

This commit is contained in:
2024-01-04 22:11:10 -06:00
parent 7d39bb3d89
commit a6e072703d
2 changed files with 4 additions and 12 deletions
+4 -4
View File
@@ -21,7 +21,7 @@
"entgamers-database": "^0.0.5", "entgamers-database": "^0.0.5",
"entgamers-panda-preset": "0.1.1", "entgamers-panda-preset": "0.1.1",
"formik": "^2.4.5", "formik": "^2.4.5",
"framer-motion": "^10.16.16", "framer-motion": "^10.17.6",
"isomorphic-fetch": "^3.0.0", "isomorphic-fetch": "^3.0.0",
"next": "^14.0.4", "next": "^14.0.4",
"node-appwrite": "^11.1.0", "node-appwrite": "^11.1.0",
@@ -31,10 +31,10 @@
"yup": "^1.3.3" "yup": "^1.3.3"
}, },
"devDependencies": { "devDependencies": {
"@commitlint/cli": "^18.4.3", "@commitlint/cli": "^18.4.4",
"@commitlint/config-conventional": "^18.4.3", "@commitlint/config-conventional": "^18.4.4",
"@pandacss/dev": "^0.23.0", "@pandacss/dev": "^0.23.0",
"@types/isomorphic-fetch": "^0.0.36", "@types/isomorphic-fetch": "^0.0.39",
"@types/node": "^20.10.6", "@types/node": "^20.10.6",
"@types/react": "^18.2.46", "@types/react": "^18.2.46",
"@types/react-dom": "^18.2.18", "@types/react-dom": "^18.2.18",
-8
View File
@@ -2,17 +2,9 @@ import Clanes from '@/app/Clanes'
import Hero from '@/app/Hero' import Hero from '@/app/Hero'
import Social from '@/app/Social' import Social from '@/app/Social'
import Team from '@/app/Team' import Team from '@/app/Team'
import { ensureRoles } from '@/services/backend/roles'
import { ensureTeamApplyCollection } from '@/services/backend/teamApply'
import { type FC } from 'react' import { type FC } from 'react'
const ensureAll = async (): Promise<void> => {
await ensureRoles()
await ensureTeamApplyCollection()
}
const HomePage: FC = async () => { const HomePage: FC = async () => {
await ensureAll()
return ( return (
<> <>
<Hero /> <Hero />