diff --git a/.github/renovate.json b/.github/renovate.json
index 3fd29fa..a273dc5 100644
--- a/.github/renovate.json
+++ b/.github/renovate.json
@@ -1,8 +1,6 @@
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
- "extends": [
- "github>sanity-io/renovate-config"
- ],
+ "extends": ["github>sanity-io/renovate-config"],
"packageRules": [
{
"matchFileNames": ["next-13/package.json"],
@@ -34,5 +32,5 @@
"matchPackageNames": ["react", "react-dom"],
"followTag": "rc"
}
- ]
+ ]
}
diff --git a/api/package.json b/api/package.json
index 684405a..eb0808c 100644
--- a/api/package.json
+++ b/api/package.json
@@ -2,13 +2,13 @@
"name": "api",
"version": "0.0.0",
"private": true,
+ "dependencies": {
+ "@sanity/client": "^6.22.5",
+ "d3-color": "^3.1.0"
+ },
"devDependencies": {
"@edge-runtime/types": "^3.0.3",
"@types/d3-color": "^3.1.3",
"typescript": "5.6.3"
- },
- "dependencies": {
- "@sanity/client": "^6.22.5",
- "d3-color": "^3.1.0"
}
-}
\ No newline at end of file
+}
diff --git a/astro/astro.config.mjs b/astro/astro.config.mjs
index 8d7977c..6c8b958 100644
--- a/astro/astro.config.mjs
+++ b/astro/astro.config.mjs
@@ -1,6 +1,6 @@
// @ts-check
// @ts-check
-import { defineConfig } from 'astro/config';
+import {defineConfig} from 'astro/config'
// https://astro.build/config
-export default defineConfig({});
+export default defineConfig({})
diff --git a/astro/package.json b/astro/package.json
index 123010b..bfe9fa6 100644
--- a/astro/package.json
+++ b/astro/package.json
@@ -1,12 +1,12 @@
{
"name": "astro",
- "type": "module",
"version": "0.0.1",
+ "type": "module",
"scripts": {
- "dev": "astro dev",
+ "astro": "astro",
"build": "astro check && astro build",
- "preview": "astro preview",
- "astro": "astro"
+ "dev": "astro dev",
+ "preview": "astro preview"
},
"dependencies": {
"@astrojs/check": "^0.9.4",
diff --git a/astro/src/layouts/Layout.astro b/astro/src/layouts/Layout.astro
index a25b9e6..05587c2 100644
--- a/astro/src/layouts/Layout.astro
+++ b/astro/src/layouts/Layout.astro
@@ -1,13 +1,13 @@
-
-
-
-
-
- Astro Basics
-
-
-
-
+
+
+
+
+
+ Astro Basics
+
+
+
+
diff --git a/astro/src/pages/index.astro b/astro/src/pages/index.astro
index a2bf4ee..88fbb6b 100644
--- a/astro/src/pages/index.astro
+++ b/astro/src/pages/index.astro
@@ -1,8 +1,8 @@
---
-import { Welcome } from 'astro:components';
-import Layout from '../layouts/Layout.astro';
+import {Welcome} from 'astro:components'
+import Layout from '../layouts/Layout.astro'
---
-
+
diff --git a/astro/tsconfig.json b/astro/tsconfig.json
index 318475d..cef5a78 100644
--- a/astro/tsconfig.json
+++ b/astro/tsconfig.json
@@ -1,10 +1,5 @@
{
"extends": "astro/tsconfigs/strictest",
- "include": [
- ".astro/types.d.ts",
- "**/*"
- ],
- "exclude": [
- "dist"
- ]
+ "include": [".astro/types.d.ts", "**/*"],
+ "exclude": ["dist"]
}
diff --git a/next-13/package.json b/next-13/package.json
index f989d27..bcfd110 100644
--- a/next-13/package.json
+++ b/next-13/package.json
@@ -3,10 +3,10 @@
"version": "0.1.0",
"private": true,
"scripts": {
- "dev": "next dev",
"build": "next build",
- "start": "next start",
- "lint": "next lint"
+ "dev": "next dev",
+ "lint": "next lint",
+ "start": "next start"
},
"dependencies": {
"@sanity/client": "^6.22.5",
diff --git a/next-13/src/pages/_app.tsx b/next-13/src/pages/_app.tsx
index 021681f..c02857f 100644
--- a/next-13/src/pages/_app.tsx
+++ b/next-13/src/pages/_app.tsx
@@ -1,6 +1,6 @@
import '@/styles/globals.css'
-import type { AppProps } from 'next/app'
+import type {AppProps} from 'next/app'
-export default function App({ Component, pageProps }: AppProps) {
+export default function App({Component, pageProps}: AppProps) {
return
}
diff --git a/next-13/src/pages/_document.tsx b/next-13/src/pages/_document.tsx
index 54e8bf3..f1e8378 100644
--- a/next-13/src/pages/_document.tsx
+++ b/next-13/src/pages/_document.tsx
@@ -1,4 +1,4 @@
-import { Html, Head, Main, NextScript } from 'next/document'
+import {Head, Html, Main, NextScript} from 'next/document'
export default function Document() {
return (
diff --git a/next-13/src/pages/api/hello.ts b/next-13/src/pages/api/hello.ts
index f8bcc7e..7c08d6c 100644
--- a/next-13/src/pages/api/hello.ts
+++ b/next-13/src/pages/api/hello.ts
@@ -1,13 +1,10 @@
// Next.js API route support: https://nextjs.org/docs/api-routes/introduction
-import type { NextApiRequest, NextApiResponse } from 'next'
+import type {NextApiRequest, NextApiResponse} from 'next'
type Data = {
name: string
}
-export default function handler(
- req: NextApiRequest,
- res: NextApiResponse
-) {
- res.status(200).json({ name: 'John Doe' })
+export default function handler(req: NextApiRequest, res: NextApiResponse) {
+ res.status(200).json({name: 'John Doe'})
}
diff --git a/next-13/src/pages/index.tsx b/next-13/src/pages/index.tsx
index be88f73..644f7fb 100644
--- a/next-13/src/pages/index.tsx
+++ b/next-13/src/pages/index.tsx
@@ -1,19 +1,19 @@
+import {Inter} from 'next/font/google'
import Image from 'next/image'
-import { Inter } from 'next/font/google'
-const inter = Inter({ subsets: ['latin'] })
+const inter = Inter({subsets: ['latin']})
export default function Home() {
return (
-