diff --git a/apps/studio-next/.gitignore b/apps/studio-next/.gitignore
new file mode 100644
index 000000000..4c47dd76c
--- /dev/null
+++ b/apps/studio-next/.gitignore
@@ -0,0 +1,31 @@
+# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.
+
+# dependencies
+/.pnp
+.pnp.js
+
+# testing
+/coverage
+
+# next.js
+/.next/
+/out/
+
+# misc
+.DS_Store
+*.pem
+
+# debug
+npm-debug.log*
+yarn-debug.log*
+yarn-error.log*
+
+# local env files
+.env*.local
+
+# vercel
+.vercel
+
+# typescript
+*.tsbuildinfo
+next-env.d.ts
diff --git a/apps/studio-next/README.md b/apps/studio-next/README.md
new file mode 100644
index 000000000..f4da3c4c1
--- /dev/null
+++ b/apps/studio-next/README.md
@@ -0,0 +1,34 @@
+This is a [Next.js](https://nextjs.org/) project bootstrapped with [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packages/create-next-app).
+
+## Getting Started
+
+First, run the development server:
+
+```bash
+npm run dev
+# or
+yarn dev
+# or
+pnpm dev
+```
+
+Open [http://localhost:3000](http://localhost:3000) with your browser to see the result.
+
+You can start editing the page by modifying `app/page.tsx`. The page auto-updates as you edit the file.
+
+This project uses [`next/font`](https://nextjs.org/docs/basic-features/font-optimization) to automatically optimize and load Inter, a custom Google Font.
+
+## Learn More
+
+To learn more about Next.js, take a look at the following resources:
+
+- [Next.js Documentation](https://nextjs.org/docs) - learn about Next.js features and API.
+- [Learn Next.js](https://nextjs.org/learn) - an interactive Next.js tutorial.
+
+You can check out [the Next.js GitHub repository](https://github.com/vercel/next.js/) - your feedback and contributions are welcome!
+
+## Deploy on Vercel
+
+The easiest way to deploy your Next.js app is to use the [Vercel Platform](https://vercel.com/new?utm_medium=default-template&filter=next.js&utm_source=create-next-app&utm_campaign=create-next-app-readme) from the creators of Next.js.
+
+Check out our [Next.js deployment documentation](https://nextjs.org/docs/deployment) for more details.
diff --git a/apps/studio-next/next.config.js b/apps/studio-next/next.config.js
new file mode 100644
index 000000000..767719fc4
--- /dev/null
+++ b/apps/studio-next/next.config.js
@@ -0,0 +1,4 @@
+/** @type {import('next').NextConfig} */
+const nextConfig = {}
+
+module.exports = nextConfig
diff --git a/apps/studio-next/package.json b/apps/studio-next/package.json
new file mode 100644
index 000000000..0ead3d47d
--- /dev/null
+++ b/apps/studio-next/package.json
@@ -0,0 +1,25 @@
+{
+ "name": "studio-next",
+ "version": "0.1.0",
+ "private": true,
+ "scripts": {
+ "dev": "next dev -p 3001",
+ "build": "next build",
+ "start": "next start",
+ "lint": "next lint"
+ },
+ "dependencies": {
+ "@types/node": "20.4.6",
+ "@types/react": "18.2.18",
+ "@types/react-dom": "18.2.7",
+ "autoprefixer": "10.4.14",
+ "eslint": "8.46.0",
+ "eslint-config-next": "13.4.12",
+ "next": "13.4.12",
+ "postcss": "8.4.27",
+ "react": "18.2.0",
+ "react-dom": "18.2.0",
+ "tailwindcss": "3.3.3",
+ "typescript": "5.1.6"
+ }
+}
diff --git a/apps/studio-next/postcss.config.js b/apps/studio-next/postcss.config.js
new file mode 100644
index 000000000..33ad091d2
--- /dev/null
+++ b/apps/studio-next/postcss.config.js
@@ -0,0 +1,6 @@
+module.exports = {
+ plugins: {
+ tailwindcss: {},
+ autoprefixer: {},
+ },
+}
diff --git a/apps/studio-next/src/app/favicon.ico b/apps/studio-next/src/app/favicon.ico
new file mode 100644
index 000000000..2597a4cf4
Binary files /dev/null and b/apps/studio-next/src/app/favicon.ico differ
diff --git a/apps/studio-next/src/app/globals.css b/apps/studio-next/src/app/globals.css
new file mode 100644
index 000000000..fd81e8858
--- /dev/null
+++ b/apps/studio-next/src/app/globals.css
@@ -0,0 +1,27 @@
+@tailwind base;
+@tailwind components;
+@tailwind utilities;
+
+:root {
+ --foreground-rgb: 0, 0, 0;
+ --background-start-rgb: 214, 219, 220;
+ --background-end-rgb: 255, 255, 255;
+}
+
+@media (prefers-color-scheme: dark) {
+ :root {
+ --foreground-rgb: 255, 255, 255;
+ --background-start-rgb: 0, 0, 0;
+ --background-end-rgb: 0, 0, 0;
+ }
+}
+
+body {
+ color: rgb(var(--foreground-rgb));
+ background: linear-gradient(
+ to bottom,
+ transparent,
+ rgb(var(--background-end-rgb))
+ )
+ rgb(var(--background-start-rgb));
+}
diff --git a/apps/studio-next/src/app/layout.tsx b/apps/studio-next/src/app/layout.tsx
new file mode 100644
index 000000000..90683c28d
--- /dev/null
+++ b/apps/studio-next/src/app/layout.tsx
@@ -0,0 +1,23 @@
+/* eslint-disable no-undef */
+import './globals.css'
+import type { Metadata } from 'next'
+import { Inter } from 'next/font/google'
+
+const inter = Inter({ subsets: ['latin'] })
+
+export const metadata: Metadata = {
+ title: 'Create Next App',
+ description: 'Generated by create next app',
+}
+
+export default function RootLayout({
+ children,
+}: {
+ children: React.ReactNode
+}) {
+ return (
+
+
{children}
+
+ )
+}
diff --git a/apps/studio-next/src/app/page.tsx b/apps/studio-next/src/app/page.tsx
new file mode 100644
index 000000000..c76c2dbae
--- /dev/null
+++ b/apps/studio-next/src/app/page.tsx
@@ -0,0 +1,7 @@
+export default function Home() {
+ return (
+
+ Home
+
+ )
+}
diff --git a/apps/studio-next/tailwind.config.js b/apps/studio-next/tailwind.config.js
new file mode 100644
index 000000000..d53b2eaa0
--- /dev/null
+++ b/apps/studio-next/tailwind.config.js
@@ -0,0 +1,18 @@
+/** @type {import('tailwindcss').Config} */
+module.exports = {
+ content: [
+ './src/pages/**/*.{js,ts,jsx,tsx,mdx}',
+ './src/components/**/*.{js,ts,jsx,tsx,mdx}',
+ './src/app/**/*.{js,ts,jsx,tsx,mdx}',
+ ],
+ theme: {
+ extend: {
+ backgroundImage: {
+ 'gradient-radial': 'radial-gradient(var(--tw-gradient-stops))',
+ 'gradient-conic':
+ 'conic-gradient(from 180deg at 50% 50%, var(--tw-gradient-stops))',
+ },
+ },
+ },
+ plugins: [],
+}
diff --git a/apps/studio-next/tsconfig.json b/apps/studio-next/tsconfig.json
new file mode 100644
index 000000000..0c7555fa7
--- /dev/null
+++ b/apps/studio-next/tsconfig.json
@@ -0,0 +1,28 @@
+{
+ "compilerOptions": {
+ "target": "es5",
+ "lib": ["dom", "dom.iterable", "esnext"],
+ "allowJs": true,
+ "skipLibCheck": true,
+ "strict": true,
+ "forceConsistentCasingInFileNames": true,
+ "noEmit": true,
+ "esModuleInterop": true,
+ "module": "esnext",
+ "moduleResolution": "node",
+ "resolveJsonModule": true,
+ "isolatedModules": true,
+ "jsx": "preserve",
+ "incremental": true,
+ "plugins": [
+ {
+ "name": "next"
+ }
+ ],
+ "paths": {
+ "@/*": ["./src/*"]
+ }
+ },
+ "include": ["next-env.d.ts", "**/*.ts", "**/*.tsx", ".next/types/**/*.ts"],
+ "exclude": ["node_modules"]
+}
diff --git a/package-lock.json b/package-lock.json
index 8caa4468a..8d52841ee 100644
--- a/package-lock.json
+++ b/package-lock.json
@@ -572,6 +572,67 @@
"webpack": "^5.75.0"
}
},
+ "apps/studio-next": {
+ "version": "0.1.0",
+ "dependencies": {
+ "@types/node": "20.4.6",
+ "@types/react": "18.2.18",
+ "@types/react-dom": "18.2.7",
+ "autoprefixer": "10.4.14",
+ "eslint": "8.46.0",
+ "eslint-config-next": "13.4.12",
+ "next": "13.4.12",
+ "postcss": "8.4.27",
+ "react": "18.2.0",
+ "react-dom": "18.2.0",
+ "tailwindcss": "3.3.3",
+ "typescript": "5.1.6"
+ }
+ },
+ "apps/studio-next/node_modules/@types/node": {
+ "version": "20.4.6",
+ "resolved": "https://registry.npmjs.org/@types/node/-/node-20.4.6.tgz",
+ "integrity": "sha512-q0RkvNgMweWWIvSMDiXhflGUKMdIxBo2M2tYM/0kEGDueQByFzK4KZAgu5YHGFNxziTlppNpTIBcqHQAxlfHdA=="
+ },
+ "apps/studio-next/node_modules/postcss": {
+ "version": "8.4.27",
+ "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.4.27.tgz",
+ "integrity": "sha512-gY/ACJtJPSmUFPDCHtX78+01fHa64FaU4zaaWfuh1MhGJISufJAH4cun6k/8fwsHYeK4UQmENQK+tRLCFJE8JQ==",
+ "funding": [
+ {
+ "type": "opencollective",
+ "url": "https://opencollective.com/postcss/"
+ },
+ {
+ "type": "tidelift",
+ "url": "https://tidelift.com/funding/github/npm/postcss"
+ },
+ {
+ "type": "github",
+ "url": "https://github.com/sponsors/ai"
+ }
+ ],
+ "dependencies": {
+ "nanoid": "^3.3.6",
+ "picocolors": "^1.0.0",
+ "source-map-js": "^1.0.2"
+ },
+ "engines": {
+ "node": "^10 || ^12 || >=14"
+ }
+ },
+ "apps/studio-next/node_modules/typescript": {
+ "version": "5.1.6",
+ "resolved": "https://registry.npmjs.org/typescript/-/typescript-5.1.6.tgz",
+ "integrity": "sha512-zaWCozRZ6DLEWAWFrVDz1H6FVXzUSfTy5FUMWsQlU8Ym5JP9eO4xkTIROFCQvhQf61z6O/G6ugw3SgAnvvm+HA==",
+ "bin": {
+ "tsc": "bin/tsc",
+ "tsserver": "bin/tsserver"
+ },
+ "engines": {
+ "node": ">=14.17"
+ }
+ },
"apps/studio/node_modules/@asyncapi/avro-schema-parser": {
"version": "3.0.2",
"license": "Apache-2.0",
@@ -928,13 +989,20 @@
"webidl-conversions": "^3.0.0"
}
},
+ "node_modules/@aashutoshrathi/word-wrap": {
+ "version": "1.2.6",
+ "resolved": "https://registry.npmjs.org/@aashutoshrathi/word-wrap/-/word-wrap-1.2.6.tgz",
+ "integrity": "sha512-1Yjs2SvM8TflER/OD3cOjhWWOZb58A2t7wpE2S9XfBYTiIl+XFhQG2bjy4Pu1I+EAlCNUzRDYDdFwFYUKvXcIA==",
+ "engines": {
+ "node": ">=0.10.0"
+ }
+ },
"node_modules/@adobe/css-tools": {
"version": "4.2.0",
"license": "MIT"
},
"node_modules/@alloc/quick-lru": {
"version": "5.2.0",
- "dev": true,
"license": "MIT",
"engines": {
"node": ">=10"
@@ -5743,7 +5811,6 @@
},
"node_modules/@eslint-community/eslint-utils": {
"version": "4.4.0",
- "dev": true,
"license": "MIT",
"dependencies": {
"eslint-visitor-keys": "^3.3.0"
@@ -5756,21 +5823,21 @@
}
},
"node_modules/@eslint-community/regexpp": {
- "version": "4.5.1",
- "dev": true,
- "license": "MIT",
+ "version": "4.6.2",
+ "resolved": "https://registry.npmjs.org/@eslint-community/regexpp/-/regexpp-4.6.2.tgz",
+ "integrity": "sha512-pPTNuaAG3QMH+buKyBIGJs3g/S5y0caxw0ygM3YyE6yJFySwiGGSzA+mM3KJ8QQvzeLh3blwgSonkFjgQdxzMw==",
"engines": {
"node": "^12.0.0 || ^14.0.0 || >=16.0.0"
}
},
"node_modules/@eslint/eslintrc": {
- "version": "2.0.3",
- "dev": true,
- "license": "MIT",
+ "version": "2.1.1",
+ "resolved": "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-2.1.1.tgz",
+ "integrity": "sha512-9t7ZA7NGGK8ckelF0PQCfcxIUzs1Md5rrO6U/c+FIQNanea5UZC0wqKXH4vHBccmu4ZJgZ2idtPeW7+Q2npOEA==",
"dependencies": {
"ajv": "^6.12.4",
"debug": "^4.3.2",
- "espree": "^9.5.2",
+ "espree": "^9.6.0",
"globals": "^13.19.0",
"ignore": "^5.2.0",
"import-fresh": "^3.2.1",
@@ -5787,8 +5854,8 @@
},
"node_modules/@eslint/eslintrc/node_modules/ajv": {
"version": "6.12.6",
- "dev": true,
- "license": "MIT",
+ "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz",
+ "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==",
"dependencies": {
"fast-deep-equal": "^3.1.1",
"fast-json-stable-stringify": "^2.0.0",
@@ -5802,8 +5869,8 @@
},
"node_modules/@eslint/eslintrc/node_modules/globals": {
"version": "13.20.0",
- "dev": true,
- "license": "MIT",
+ "resolved": "https://registry.npmjs.org/globals/-/globals-13.20.0.tgz",
+ "integrity": "sha512-Qg5QtVkCy/kv3FUSlu4ukeZDVf9ee0iXLAUYX13gbR17bnejFTzr4iS9bY7kwCf1NztRNm1t91fjOiyx4CSwPQ==",
"dependencies": {
"type-fest": "^0.20.2"
},
@@ -5816,13 +5883,13 @@
},
"node_modules/@eslint/eslintrc/node_modules/json-schema-traverse": {
"version": "0.4.1",
- "dev": true,
- "license": "MIT"
+ "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz",
+ "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg=="
},
"node_modules/@eslint/js": {
- "version": "8.41.0",
- "dev": true,
- "license": "MIT",
+ "version": "8.46.0",
+ "resolved": "https://registry.npmjs.org/@eslint/js/-/js-8.46.0.tgz",
+ "integrity": "sha512-a8TLtmPi8xzPkCbp/OGFUo5yhRkHM2Ko9kOWP4znJr0WAhWyThaw3PnwX4vOTWOAMsV2uRt32PPDcEz63esSaA==",
"engines": {
"node": "^12.22.0 || ^14.17.0 || >=16.0.0"
}
@@ -5890,9 +5957,9 @@
}
},
"node_modules/@humanwhocodes/config-array": {
- "version": "0.11.8",
- "dev": true,
- "license": "Apache-2.0",
+ "version": "0.11.10",
+ "resolved": "https://registry.npmjs.org/@humanwhocodes/config-array/-/config-array-0.11.10.tgz",
+ "integrity": "sha512-KVVjQmNUepDVGXNuoRRdmmEjruj0KfiGSbS8LVc12LMsWDQzRXJ0qdhN8L8uUigKpfEHRhlaQFY0ib1tnUbNeQ==",
"dependencies": {
"@humanwhocodes/object-schema": "^1.2.1",
"debug": "^4.1.1",
@@ -5904,7 +5971,6 @@
},
"node_modules/@humanwhocodes/module-importer": {
"version": "1.0.1",
- "dev": true,
"license": "Apache-2.0",
"engines": {
"node": ">=12.22"
@@ -5916,7 +5982,6 @@
},
"node_modules/@humanwhocodes/object-schema": {
"version": "1.2.1",
- "dev": true,
"license": "BSD-3-Clause"
},
"node_modules/@hyperjump/json": {
@@ -7005,7 +7070,6 @@
},
"node_modules/@jridgewell/gen-mapping": {
"version": "0.3.3",
- "dev": true,
"license": "MIT",
"dependencies": {
"@jridgewell/set-array": "^1.0.1",
@@ -7018,7 +7082,6 @@
},
"node_modules/@jridgewell/resolve-uri": {
"version": "3.1.0",
- "dev": true,
"license": "MIT",
"engines": {
"node": ">=6.0.0"
@@ -7026,7 +7089,6 @@
},
"node_modules/@jridgewell/set-array": {
"version": "1.1.2",
- "dev": true,
"license": "MIT",
"engines": {
"node": ">=6.0.0"
@@ -7043,12 +7105,10 @@
},
"node_modules/@jridgewell/sourcemap-codec": {
"version": "1.4.15",
- "dev": true,
"license": "MIT"
},
"node_modules/@jridgewell/trace-mapping": {
"version": "0.3.18",
- "dev": true,
"license": "MIT",
"dependencies": {
"@jridgewell/resolve-uri": "3.1.0",
@@ -7057,7 +7117,6 @@
},
"node_modules/@jridgewell/trace-mapping/node_modules/@jridgewell/sourcemap-codec": {
"version": "1.4.14",
- "dev": true,
"license": "MIT"
},
"node_modules/@jsdevtools/ono": {
@@ -7262,16 +7321,23 @@
"tar-fs": "^2.1.1"
}
},
+ "node_modules/@next/env": {
+ "version": "13.4.12",
+ "resolved": "https://registry.npmjs.org/@next/env/-/env-13.4.12.tgz",
+ "integrity": "sha512-RmHanbV21saP/6OEPBJ7yJMuys68cIf8OBBWd7+uj40LdpmswVAwe1uzeuFyUsd6SfeITWT3XnQfn6wULeKwDQ=="
+ },
"node_modules/@next/eslint-plugin-next": {
- "version": "13.4.5",
- "license": "MIT",
+ "version": "13.4.12",
+ "resolved": "https://registry.npmjs.org/@next/eslint-plugin-next/-/eslint-plugin-next-13.4.12.tgz",
+ "integrity": "sha512-6rhK9CdxEgj/j1qvXIyLTWEaeFv7zOK8yJMulz3Owel0uek0U9MJCGzmKgYxM3aAUBo3gKeywCZKyQnJKto60A==",
"dependencies": {
"glob": "7.1.7"
}
},
"node_modules/@next/eslint-plugin-next/node_modules/glob": {
"version": "7.1.7",
- "license": "ISC",
+ "resolved": "https://registry.npmjs.org/glob/-/glob-7.1.7.tgz",
+ "integrity": "sha512-OvD9ENzPLbegENnYP5UUfJIirTg4+XwMWGaQfQTY0JenxNvvIKP3U3/tAQSPIu/lHxXYSZmpXlUHeqAIdKzBLQ==",
"dependencies": {
"fs.realpath": "^1.0.0",
"inflight": "^1.0.4",
@@ -7287,6 +7353,141 @@
"url": "https://github.com/sponsors/isaacs"
}
},
+ "node_modules/@next/swc-darwin-arm64": {
+ "version": "13.4.12",
+ "resolved": "https://registry.npmjs.org/@next/swc-darwin-arm64/-/swc-darwin-arm64-13.4.12.tgz",
+ "integrity": "sha512-deUrbCXTMZ6ZhbOoloqecnUeNpUOupi8SE2tx4jPfNS9uyUR9zK4iXBvH65opVcA/9F5I/p8vDXSYbUlbmBjZg==",
+ "cpu": [
+ "arm64"
+ ],
+ "optional": true,
+ "os": [
+ "darwin"
+ ],
+ "engines": {
+ "node": ">= 10"
+ }
+ },
+ "node_modules/@next/swc-darwin-x64": {
+ "version": "13.4.12",
+ "resolved": "https://registry.npmjs.org/@next/swc-darwin-x64/-/swc-darwin-x64-13.4.12.tgz",
+ "integrity": "sha512-WRvH7RxgRHlC1yb5oG0ZLx8F7uci9AivM5/HGGv9ZyG2Als8Ij64GC3d+mQ5sJhWjusyU6T6V1WKTUoTmOB0zQ==",
+ "cpu": [
+ "x64"
+ ],
+ "optional": true,
+ "os": [
+ "darwin"
+ ],
+ "engines": {
+ "node": ">= 10"
+ }
+ },
+ "node_modules/@next/swc-linux-arm64-gnu": {
+ "version": "13.4.12",
+ "resolved": "https://registry.npmjs.org/@next/swc-linux-arm64-gnu/-/swc-linux-arm64-gnu-13.4.12.tgz",
+ "integrity": "sha512-YEKracAWuxp54tKiAvvq73PUs9lok57cc8meYRibTWe/VdPB2vLgkTVWFcw31YDuRXdEhdX0fWS6Q+ESBhnEig==",
+ "cpu": [
+ "arm64"
+ ],
+ "optional": true,
+ "os": [
+ "linux"
+ ],
+ "engines": {
+ "node": ">= 10"
+ }
+ },
+ "node_modules/@next/swc-linux-arm64-musl": {
+ "version": "13.4.12",
+ "resolved": "https://registry.npmjs.org/@next/swc-linux-arm64-musl/-/swc-linux-arm64-musl-13.4.12.tgz",
+ "integrity": "sha512-LhJR7/RAjdHJ2Isl2pgc/JaoxNk0KtBgkVpiDJPVExVWA1c6gzY57+3zWuxuyWzTG+fhLZo2Y80pLXgIJv7g3g==",
+ "cpu": [
+ "arm64"
+ ],
+ "optional": true,
+ "os": [
+ "linux"
+ ],
+ "engines": {
+ "node": ">= 10"
+ }
+ },
+ "node_modules/@next/swc-linux-x64-gnu": {
+ "version": "13.4.12",
+ "resolved": "https://registry.npmjs.org/@next/swc-linux-x64-gnu/-/swc-linux-x64-gnu-13.4.12.tgz",
+ "integrity": "sha512-1DWLL/B9nBNiQRng+1aqs3OaZcxC16Nf+mOnpcrZZSdyKHek3WQh6j/fkbukObgNGwmCoVevLUa/p3UFTTqgqg==",
+ "cpu": [
+ "x64"
+ ],
+ "optional": true,
+ "os": [
+ "linux"
+ ],
+ "engines": {
+ "node": ">= 10"
+ }
+ },
+ "node_modules/@next/swc-linux-x64-musl": {
+ "version": "13.4.12",
+ "resolved": "https://registry.npmjs.org/@next/swc-linux-x64-musl/-/swc-linux-x64-musl-13.4.12.tgz",
+ "integrity": "sha512-kEAJmgYFhp0VL+eRWmUkVxLVunn7oL9Mdue/FS8yzRBVj7Z0AnIrHpTIeIUl1bbdQq1VaoOztnKicAjfkLTRCQ==",
+ "cpu": [
+ "x64"
+ ],
+ "optional": true,
+ "os": [
+ "linux"
+ ],
+ "engines": {
+ "node": ">= 10"
+ }
+ },
+ "node_modules/@next/swc-win32-arm64-msvc": {
+ "version": "13.4.12",
+ "resolved": "https://registry.npmjs.org/@next/swc-win32-arm64-msvc/-/swc-win32-arm64-msvc-13.4.12.tgz",
+ "integrity": "sha512-GMLuL/loR6yIIRTnPRY6UGbLL9MBdw2anxkOnANxvLvsml4F0HNIgvnU3Ej4BjbqMTNjD4hcPFdlEow4XHPdZA==",
+ "cpu": [
+ "arm64"
+ ],
+ "optional": true,
+ "os": [
+ "win32"
+ ],
+ "engines": {
+ "node": ">= 10"
+ }
+ },
+ "node_modules/@next/swc-win32-ia32-msvc": {
+ "version": "13.4.12",
+ "resolved": "https://registry.npmjs.org/@next/swc-win32-ia32-msvc/-/swc-win32-ia32-msvc-13.4.12.tgz",
+ "integrity": "sha512-PhgNqN2Vnkm7XaMdRmmX0ZSwZXQAtamBVSa9A/V1dfKQCV1rjIZeiy/dbBnVYGdj63ANfsOR/30XpxP71W0eww==",
+ "cpu": [
+ "ia32"
+ ],
+ "optional": true,
+ "os": [
+ "win32"
+ ],
+ "engines": {
+ "node": ">= 10"
+ }
+ },
+ "node_modules/@next/swc-win32-x64-msvc": {
+ "version": "13.4.12",
+ "resolved": "https://registry.npmjs.org/@next/swc-win32-x64-msvc/-/swc-win32-x64-msvc-13.4.12.tgz",
+ "integrity": "sha512-Z+56e/Ljt0bUs+T+jPjhFyxYBcdY2RIq9ELFU+qAMQMteHo7ymbV7CKmlcX59RI9C4YzN8PgMgLyAoi916b5HA==",
+ "cpu": [
+ "x64"
+ ],
+ "optional": true,
+ "os": [
+ "win32"
+ ],
+ "engines": {
+ "node": ">= 10"
+ }
+ },
"node_modules/@nicolo-ribaudo/eslint-scope-5-internals": {
"version": "5.1.1-v1",
"dev": true,
@@ -11638,6 +11839,14 @@
"node": ">=10"
}
},
+ "node_modules/@swc/helpers": {
+ "version": "0.5.1",
+ "resolved": "https://registry.npmjs.org/@swc/helpers/-/helpers-0.5.1.tgz",
+ "integrity": "sha512-sJ902EfIzn1Fa+qYmjdQqh8tPsoxyBz+8yBKC2HKUxyezKJFwPGOn7pv4WY6QuQW//ySQi5lJjA/ZT9sNWWNTg==",
+ "dependencies": {
+ "tslib": "^2.4.0"
+ }
+ },
"node_modules/@swc/jest": {
"version": "0.2.26",
"dev": true,
@@ -12378,9 +12587,9 @@
"license": "MIT"
},
"node_modules/@types/react": {
- "version": "18.2.7",
- "dev": true,
- "license": "MIT",
+ "version": "18.2.18",
+ "resolved": "https://registry.npmjs.org/@types/react/-/react-18.2.18.tgz",
+ "integrity": "sha512-da4NTSeBv/P34xoZPhtcLkmZuJ+oYaCxHmyHzwaDQo9RQPBeXV+06gEk2FpqEcsX9XrnNLvRpVh6bdavDSjtiQ==",
"dependencies": {
"@types/prop-types": "*",
"@types/scheduler": "*",
@@ -12388,9 +12597,9 @@
}
},
"node_modules/@types/react-dom": {
- "version": "18.2.4",
- "dev": true,
- "license": "MIT",
+ "version": "18.2.7",
+ "resolved": "https://registry.npmjs.org/@types/react-dom/-/react-dom-18.2.7.tgz",
+ "integrity": "sha512-GRaAEriuT4zp9N4p1i8BDBYmEyfo+xQ3yHjJU4eiK5NDa1RmUZG+unZABUTK4/Ox/M+GaHwb6Ow8rUITrtjszA==",
"dependencies": {
"@types/react": "*"
}
@@ -12921,7 +13130,6 @@
},
"node_modules/acorn-jsx": {
"version": "5.3.2",
- "dev": true,
"license": "MIT",
"peerDependencies": {
"acorn": "^6.0.0 || ^7.0.0 || ^8.0.0"
@@ -13131,12 +13339,10 @@
},
"node_modules/any-promise": {
"version": "1.3.0",
- "dev": true,
"license": "MIT"
},
"node_modules/anymatch": {
"version": "3.1.3",
- "dev": true,
"license": "ISC",
"dependencies": {
"normalize-path": "^3.0.0",
@@ -13183,7 +13389,6 @@
},
"node_modules/arg": {
"version": "5.0.2",
- "dev": true,
"license": "MIT"
},
"node_modules/argparse": {
@@ -13430,7 +13635,6 @@
},
"node_modules/autoprefixer": {
"version": "10.4.14",
- "dev": true,
"funding": [
{
"type": "opencollective",
@@ -14037,7 +14241,6 @@
},
"node_modules/binary-extensions": {
"version": "2.2.0",
- "dev": true,
"license": "MIT",
"engines": {
"node": ">=8"
@@ -14247,7 +14450,6 @@
},
"node_modules/browserslist": {
"version": "4.21.7",
- "dev": true,
"funding": [
{
"type": "opencollective",
@@ -14363,6 +14565,17 @@
"esbuild": ">=0.17"
}
},
+ "node_modules/busboy": {
+ "version": "1.6.0",
+ "resolved": "https://registry.npmjs.org/busboy/-/busboy-1.6.0.tgz",
+ "integrity": "sha512-8SFQbg/0hQ9xy3UNTB0YEnsNBbWfhf7RtnzpL7TkBiTBRfrQ9Fxcnz7VJsleJpyp6rVLvXiuORqjlHi5q+PYuA==",
+ "dependencies": {
+ "streamsearch": "^1.1.0"
+ },
+ "engines": {
+ "node": ">=10.16.0"
+ }
+ },
"node_modules/bytes": {
"version": "3.0.0",
"dev": true,
@@ -14453,7 +14666,6 @@
},
"node_modules/callsites": {
"version": "3.1.0",
- "dev": true,
"license": "MIT",
"engines": {
"node": ">=6"
@@ -14481,7 +14693,6 @@
},
"node_modules/camelcase-css": {
"version": "2.0.1",
- "dev": true,
"license": "MIT",
"engines": {
"node": ">= 6"
@@ -14522,7 +14733,6 @@
},
"node_modules/caniuse-lite": {
"version": "1.0.30001492",
- "dev": true,
"funding": [
{
"type": "opencollective",
@@ -14627,7 +14837,6 @@
},
"node_modules/chokidar": {
"version": "3.5.3",
- "dev": true,
"funding": [
{
"type": "individual",
@@ -14653,7 +14862,6 @@
},
"node_modules/chokidar/node_modules/glob-parent": {
"version": "5.1.2",
- "dev": true,
"license": "ISC",
"dependencies": {
"is-glob": "^4.0.1"
@@ -15690,7 +15898,6 @@
},
"node_modules/cssesc": {
"version": "3.0.0",
- "dev": true,
"license": "MIT",
"bin": {
"cssesc": "bin/cssesc"
@@ -16455,7 +16662,6 @@
},
"node_modules/didyoumean": {
"version": "1.2.2",
- "dev": true,
"license": "Apache-2.0"
},
"node_modules/diff": {
@@ -16485,7 +16691,6 @@
},
"node_modules/dlv": {
"version": "1.1.3",
- "dev": true,
"license": "MIT"
},
"node_modules/dns-equal": {
@@ -16506,7 +16711,6 @@
},
"node_modules/doctrine": {
"version": "3.0.0",
- "dev": true,
"license": "Apache-2.0",
"dependencies": {
"esutils": "^2.0.2"
@@ -16709,7 +16913,6 @@
},
"node_modules/electron-to-chromium": {
"version": "1.4.416",
- "dev": true,
"license": "ISC"
},
"node_modules/emittery": {
@@ -17374,7 +17577,6 @@
},
"node_modules/escape-string-regexp": {
"version": "4.0.0",
- "dev": true,
"license": "MIT",
"engines": {
"node": ">=10"
@@ -17412,26 +17614,26 @@
}
},
"node_modules/eslint": {
- "version": "8.41.0",
- "dev": true,
- "license": "MIT",
+ "version": "8.46.0",
+ "resolved": "https://registry.npmjs.org/eslint/-/eslint-8.46.0.tgz",
+ "integrity": "sha512-cIO74PvbW0qU8e0mIvk5IV3ToWdCq5FYG6gWPHHkx6gNdjlbAYvtfHmlCMXxjcoVaIdwy/IAt3+mDkZkfvb2Dg==",
"dependencies": {
"@eslint-community/eslint-utils": "^4.2.0",
- "@eslint-community/regexpp": "^4.4.0",
- "@eslint/eslintrc": "^2.0.3",
- "@eslint/js": "8.41.0",
- "@humanwhocodes/config-array": "^0.11.8",
+ "@eslint-community/regexpp": "^4.6.1",
+ "@eslint/eslintrc": "^2.1.1",
+ "@eslint/js": "^8.46.0",
+ "@humanwhocodes/config-array": "^0.11.10",
"@humanwhocodes/module-importer": "^1.0.1",
"@nodelib/fs.walk": "^1.2.8",
- "ajv": "^6.10.0",
+ "ajv": "^6.12.4",
"chalk": "^4.0.0",
"cross-spawn": "^7.0.2",
"debug": "^4.3.2",
"doctrine": "^3.0.0",
"escape-string-regexp": "^4.0.0",
- "eslint-scope": "^7.2.0",
- "eslint-visitor-keys": "^3.4.1",
- "espree": "^9.5.2",
+ "eslint-scope": "^7.2.2",
+ "eslint-visitor-keys": "^3.4.2",
+ "espree": "^9.6.1",
"esquery": "^1.4.2",
"esutils": "^2.0.2",
"fast-deep-equal": "^3.1.3",
@@ -17441,7 +17643,6 @@
"globals": "^13.19.0",
"graphemer": "^1.4.0",
"ignore": "^5.2.0",
- "import-fresh": "^3.0.0",
"imurmurhash": "^0.1.4",
"is-glob": "^4.0.0",
"is-path-inside": "^3.0.3",
@@ -17451,9 +17652,8 @@
"lodash.merge": "^4.6.2",
"minimatch": "^3.1.2",
"natural-compare": "^1.4.0",
- "optionator": "^0.9.1",
+ "optionator": "^0.9.3",
"strip-ansi": "^6.0.1",
- "strip-json-comments": "^3.1.0",
"text-table": "^0.2.0"
},
"bin": {
@@ -17471,10 +17671,11 @@
"link": true
},
"node_modules/eslint-config-next": {
- "version": "13.4.5",
- "license": "MIT",
+ "version": "13.4.12",
+ "resolved": "https://registry.npmjs.org/eslint-config-next/-/eslint-config-next-13.4.12.tgz",
+ "integrity": "sha512-ZF0r5vxKaVazyZH/37Au/XItiG7qUOBw+HaH3PeyXltIMwXorsn6bdrl0Nn9N5v5v9spc+6GM2ryjugbjF6X2g==",
"dependencies": {
- "@next/eslint-plugin-next": "13.4.5",
+ "@next/eslint-plugin-next": "13.4.12",
"@rushstack/eslint-patch": "^1.1.3",
"@typescript-eslint/parser": "^5.42.0",
"eslint-import-resolver-node": "^0.3.6",
@@ -17482,7 +17683,7 @@
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-react": "^7.31.7",
- "eslint-plugin-react-hooks": "^4.5.0"
+ "eslint-plugin-react-hooks": "5.0.0-canary-7118f5dd7-20230705"
},
"peerDependencies": {
"eslint": "^7.23.0 || ^8.0.0",
@@ -17494,6 +17695,17 @@
}
}
},
+ "node_modules/eslint-config-next/node_modules/eslint-plugin-react-hooks": {
+ "version": "5.0.0-canary-7118f5dd7-20230705",
+ "resolved": "https://registry.npmjs.org/eslint-plugin-react-hooks/-/eslint-plugin-react-hooks-5.0.0-canary-7118f5dd7-20230705.tgz",
+ "integrity": "sha512-AZYbMo/NW9chdL7vk6HQzQhT+PvTAEVqWk9ziruUoW2kAOcN5qNyelv70e0F1VNQAbvutOC9oc+xfWycI9FxDw==",
+ "engines": {
+ "node": ">=10"
+ },
+ "peerDependencies": {
+ "eslint": "^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0-0"
+ }
+ },
"node_modules/eslint-config-prettier": {
"version": "8.8.0",
"license": "MIT",
@@ -17784,6 +17996,7 @@
},
"node_modules/eslint-plugin-react-hooks": {
"version": "4.6.0",
+ "dev": true,
"license": "MIT",
"engines": {
"node": ">=10"
@@ -17866,9 +18079,9 @@
}
},
"node_modules/eslint-scope": {
- "version": "7.2.0",
- "dev": true,
- "license": "BSD-2-Clause",
+ "version": "7.2.2",
+ "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-7.2.2.tgz",
+ "integrity": "sha512-dOt21O7lTMhDM+X9mB4GX+DZrZtCUJPL/wlcTqxyrx5IvO0IYtILdtrQGQp+8n5S0gwSVmOf9NQrjMOgfQZlIg==",
"dependencies": {
"esrecurse": "^4.3.0",
"estraverse": "^5.2.0"
@@ -17903,8 +18116,9 @@
}
},
"node_modules/eslint-visitor-keys": {
- "version": "3.4.1",
- "license": "Apache-2.0",
+ "version": "3.4.2",
+ "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-3.4.2.tgz",
+ "integrity": "sha512-8drBzUEyZ2llkpCA67iYrgEssKDUu68V8ChqqOfFupIaG/LCVPUT+CoGJpT77zJprs4T/W7p07LP7zAIMuweVw==",
"engines": {
"node": "^12.22.0 || ^14.17.0 || >=16.0.0"
},
@@ -17914,7 +18128,6 @@
},
"node_modules/eslint/node_modules/ajv": {
"version": "6.12.6",
- "dev": true,
"license": "MIT",
"dependencies": {
"fast-deep-equal": "^3.1.1",
@@ -17929,7 +18142,6 @@
},
"node_modules/eslint/node_modules/globals": {
"version": "13.20.0",
- "dev": true,
"license": "MIT",
"dependencies": {
"type-fest": "^0.20.2"
@@ -17943,31 +18155,30 @@
},
"node_modules/eslint/node_modules/json-schema-traverse": {
"version": "0.4.1",
- "dev": true,
"license": "MIT"
},
"node_modules/eslint/node_modules/optionator": {
- "version": "0.9.1",
- "dev": true,
- "license": "MIT",
+ "version": "0.9.3",
+ "resolved": "https://registry.npmjs.org/optionator/-/optionator-0.9.3.tgz",
+ "integrity": "sha512-JjCoypp+jKn1ttEFExxhetCKeJt9zhAgAve5FXHixTvFDW/5aEktX9bufBKLRRMdU7bNtpLfcGu94B3cdEJgjg==",
"dependencies": {
+ "@aashutoshrathi/word-wrap": "^1.2.3",
"deep-is": "^0.1.3",
"fast-levenshtein": "^2.0.6",
"levn": "^0.4.1",
"prelude-ls": "^1.2.1",
- "type-check": "^0.4.0",
- "word-wrap": "^1.2.3"
+ "type-check": "^0.4.0"
},
"engines": {
"node": ">= 0.8.0"
}
},
"node_modules/espree": {
- "version": "9.5.2",
- "dev": true,
- "license": "BSD-2-Clause",
+ "version": "9.6.1",
+ "resolved": "https://registry.npmjs.org/espree/-/espree-9.6.1.tgz",
+ "integrity": "sha512-oruZaFkjorTpF32kDSI5/75ViwGeZginGGy2NoOSg3Q9bnwlnmDm4HLnkl0RE3n+njDXR037aY1+x58Z/zFdwQ==",
"dependencies": {
- "acorn": "^8.8.0",
+ "acorn": "^8.9.0",
"acorn-jsx": "^5.3.2",
"eslint-visitor-keys": "^3.4.1"
},
@@ -17979,9 +18190,9 @@
}
},
"node_modules/espree/node_modules/acorn": {
- "version": "8.8.2",
- "dev": true,
- "license": "MIT",
+ "version": "8.10.0",
+ "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.10.0.tgz",
+ "integrity": "sha512-F0SAmZ8iUtS//m8DmCTA0jlh6TDKkHQyK6xc6V4KDTyZKA9dnvX9/3sRTVQrWm79glUAZbnmmNcdYwUIHWVybw==",
"bin": {
"acorn": "bin/acorn"
},
@@ -18002,7 +18213,6 @@
},
"node_modules/esquery": {
"version": "1.5.0",
- "dev": true,
"license": "BSD-3-Clause",
"dependencies": {
"estraverse": "^5.1.0"
@@ -18013,7 +18223,6 @@
},
"node_modules/esrecurse": {
"version": "4.3.0",
- "dev": true,
"license": "BSD-2-Clause",
"dependencies": {
"estraverse": "^5.2.0"
@@ -18619,7 +18828,6 @@
},
"node_modules/file-entry-cache": {
"version": "6.0.1",
- "dev": true,
"license": "MIT",
"dependencies": {
"flat-cache": "^3.0.4"
@@ -18930,7 +19138,6 @@
},
"node_modules/flat-cache": {
"version": "3.0.4",
- "dev": true,
"license": "MIT",
"dependencies": {
"flatted": "^3.1.0",
@@ -18942,7 +19149,6 @@
},
"node_modules/flatted": {
"version": "3.2.7",
- "dev": true,
"license": "ISC"
},
"node_modules/flow-parser": {
@@ -19142,7 +19348,6 @@
},
"node_modules/fraction.js": {
"version": "4.2.0",
- "dev": true,
"license": "MIT",
"engines": {
"node": "*"
@@ -19261,7 +19466,6 @@
},
"node_modules/fsevents": {
"version": "2.3.2",
- "dev": true,
"license": "MIT",
"optional": true,
"os": [
@@ -19478,7 +19682,6 @@
},
"node_modules/glob": {
"version": "7.2.3",
- "dev": true,
"license": "ISC",
"dependencies": {
"fs.realpath": "^1.0.0",
@@ -19497,7 +19700,6 @@
},
"node_modules/glob-parent": {
"version": "6.0.2",
- "dev": true,
"license": "ISC",
"dependencies": {
"is-glob": "^4.0.3"
@@ -19526,7 +19728,6 @@
},
"node_modules/glob-to-regexp": {
"version": "0.4.1",
- "dev": true,
"license": "BSD-2-Clause"
},
"node_modules/global-modules": {
@@ -19630,7 +19831,6 @@
},
"node_modules/graphemer": {
"version": "1.4.0",
- "dev": true,
"license": "MIT"
},
"node_modules/gray-matter": {
@@ -20230,7 +20430,6 @@
},
"node_modules/import-fresh": {
"version": "3.3.0",
- "dev": true,
"license": "MIT",
"dependencies": {
"parent-module": "^1.0.0",
@@ -20245,7 +20444,6 @@
},
"node_modules/import-fresh/node_modules/resolve-from": {
"version": "4.0.0",
- "dev": true,
"license": "MIT",
"engines": {
"node": ">=4"
@@ -20330,7 +20528,6 @@
},
"node_modules/imurmurhash": {
"version": "0.1.4",
- "dev": true,
"license": "MIT",
"engines": {
"node": ">=0.8.19"
@@ -20461,7 +20658,6 @@
},
"node_modules/is-binary-path": {
"version": "2.1.0",
- "dev": true,
"license": "MIT",
"dependencies": {
"binary-extensions": "^2.0.0"
@@ -20784,7 +20980,6 @@
},
"node_modules/is-path-inside": {
"version": "3.0.3",
- "dev": true,
"license": "MIT",
"engines": {
"node": ">=8"
@@ -23217,7 +23412,6 @@
},
"node_modules/jiti": {
"version": "1.18.2",
- "dev": true,
"license": "MIT",
"bin": {
"jiti": "bin/jiti.js"
@@ -23588,7 +23782,6 @@
},
"node_modules/json-stable-stringify-without-jsonify": {
"version": "1.0.1",
- "dev": true,
"license": "MIT"
},
"node_modules/json-to-ast": {
@@ -23772,7 +23965,6 @@
},
"node_modules/levn": {
"version": "0.4.1",
- "dev": true,
"license": "MIT",
"dependencies": {
"prelude-ls": "^1.2.1",
@@ -23784,7 +23976,6 @@
},
"node_modules/lilconfig": {
"version": "2.1.0",
- "dev": true,
"license": "MIT",
"engines": {
"node": ">=10"
@@ -23936,7 +24127,6 @@
},
"node_modules/lodash.merge": {
"version": "4.6.2",
- "dev": true,
"license": "MIT"
},
"node_modules/lodash.sortby": {
@@ -25394,7 +25584,6 @@
},
"node_modules/mz": {
"version": "2.7.0",
- "dev": true,
"license": "MIT",
"dependencies": {
"any-promise": "^1.0.0",
@@ -25404,7 +25593,6 @@
},
"node_modules/nanoid": {
"version": "3.3.6",
- "dev": true,
"funding": [
{
"type": "github",
@@ -25476,7 +25664,6 @@
},
"node_modules/natural-compare": {
"version": "1.4.0",
- "dev": true,
"license": "MIT"
},
"node_modules/natural-compare-lite": {
@@ -25505,6 +25692,79 @@
"dev": true,
"license": "MIT"
},
+ "node_modules/next": {
+ "version": "13.4.12",
+ "resolved": "https://registry.npmjs.org/next/-/next-13.4.12.tgz",
+ "integrity": "sha512-eHfnru9x6NRmTMcjQp6Nz0J4XH9OubmzOa7CkWL+AUrUxpibub3vWwttjduu9No16dug1kq04hiUUpo7J3m3Xw==",
+ "dependencies": {
+ "@next/env": "13.4.12",
+ "@swc/helpers": "0.5.1",
+ "busboy": "1.6.0",
+ "caniuse-lite": "^1.0.30001406",
+ "postcss": "8.4.14",
+ "styled-jsx": "5.1.1",
+ "watchpack": "2.4.0",
+ "zod": "3.21.4"
+ },
+ "bin": {
+ "next": "dist/bin/next"
+ },
+ "engines": {
+ "node": ">=16.8.0"
+ },
+ "optionalDependencies": {
+ "@next/swc-darwin-arm64": "13.4.12",
+ "@next/swc-darwin-x64": "13.4.12",
+ "@next/swc-linux-arm64-gnu": "13.4.12",
+ "@next/swc-linux-arm64-musl": "13.4.12",
+ "@next/swc-linux-x64-gnu": "13.4.12",
+ "@next/swc-linux-x64-musl": "13.4.12",
+ "@next/swc-win32-arm64-msvc": "13.4.12",
+ "@next/swc-win32-ia32-msvc": "13.4.12",
+ "@next/swc-win32-x64-msvc": "13.4.12"
+ },
+ "peerDependencies": {
+ "@opentelemetry/api": "^1.1.0",
+ "fibers": ">= 3.1.0",
+ "react": "^18.2.0",
+ "react-dom": "^18.2.0",
+ "sass": "^1.3.0"
+ },
+ "peerDependenciesMeta": {
+ "@opentelemetry/api": {
+ "optional": true
+ },
+ "fibers": {
+ "optional": true
+ },
+ "sass": {
+ "optional": true
+ }
+ }
+ },
+ "node_modules/next/node_modules/postcss": {
+ "version": "8.4.14",
+ "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.4.14.tgz",
+ "integrity": "sha512-E398TUmfAYFPBSdzgeieK2Y1+1cpdxJx8yXbK/m57nRhKSmk1GB2tO4lbLBtlkfPQTDKfe4Xqv1ASWPpayPEig==",
+ "funding": [
+ {
+ "type": "opencollective",
+ "url": "https://opencollective.com/postcss/"
+ },
+ {
+ "type": "tidelift",
+ "url": "https://tidelift.com/funding/github/npm/postcss"
+ }
+ ],
+ "dependencies": {
+ "nanoid": "^3.3.4",
+ "picocolors": "^1.0.0",
+ "source-map-js": "^1.0.2"
+ },
+ "engines": {
+ "node": "^10 || ^12 || >=14"
+ }
+ },
"node_modules/nimma": {
"version": "0.2.2",
"license": "Apache-2.0",
@@ -25609,7 +25869,6 @@
},
"node_modules/node-releases": {
"version": "2.0.12",
- "dev": true,
"license": "MIT"
},
"node_modules/nopt": {
@@ -25628,7 +25887,6 @@
},
"node_modules/normalize-path": {
"version": "3.0.0",
- "dev": true,
"license": "MIT",
"engines": {
"node": ">=0.10.0"
@@ -25636,7 +25894,6 @@
},
"node_modules/normalize-range": {
"version": "0.1.2",
- "dev": true,
"license": "MIT",
"engines": {
"node": ">=0.10.0"
@@ -25789,7 +26046,6 @@
},
"node_modules/object-hash": {
"version": "3.0.0",
- "dev": true,
"license": "MIT",
"engines": {
"node": ">= 6"
@@ -26163,7 +26419,6 @@
},
"node_modules/parent-module": {
"version": "1.0.1",
- "dev": true,
"license": "MIT",
"dependencies": {
"callsites": "^3.0.0"
@@ -26324,7 +26579,6 @@
},
"node_modules/pirates": {
"version": "4.0.5",
- "dev": true,
"license": "MIT",
"engines": {
"node": ">= 6"
@@ -26447,7 +26701,6 @@
},
"node_modules/postcss": {
"version": "8.4.24",
- "dev": true,
"funding": [
{
"type": "opencollective",
@@ -26850,7 +27103,6 @@
},
"node_modules/postcss-js": {
"version": "4.0.1",
- "dev": true,
"license": "MIT",
"dependencies": {
"camelcase-css": "^2.0.1"
@@ -26887,7 +27139,6 @@
},
"node_modules/postcss-load-config": {
"version": "4.0.1",
- "dev": true,
"license": "MIT",
"dependencies": {
"lilconfig": "^2.0.5",
@@ -26915,7 +27166,6 @@
},
"node_modules/postcss-load-config/node_modules/yaml": {
"version": "2.3.1",
- "dev": true,
"license": "ISC",
"engines": {
"node": ">= 14"
@@ -27113,7 +27363,6 @@
},
"node_modules/postcss-nested": {
"version": "6.0.1",
- "dev": true,
"license": "MIT",
"dependencies": {
"postcss-selector-parser": "^6.0.11"
@@ -27131,7 +27380,6 @@
},
"node_modules/postcss-nested/node_modules/postcss-selector-parser": {
"version": "6.0.13",
- "dev": true,
"license": "MIT",
"dependencies": {
"cssesc": "^3.0.0",
@@ -27617,7 +27865,6 @@
},
"node_modules/postcss-value-parser": {
"version": "4.2.0",
- "dev": true,
"license": "MIT"
},
"node_modules/preferred-pm": {
@@ -27635,7 +27882,6 @@
},
"node_modules/prelude-ls": {
"version": "1.2.1",
- "dev": true,
"license": "MIT",
"engines": {
"node": ">= 0.8.0"
@@ -28538,7 +28784,6 @@
},
"node_modules/read-cache": {
"version": "1.0.0",
- "dev": true,
"license": "MIT",
"dependencies": {
"pify": "^2.3.0"
@@ -28546,7 +28791,6 @@
},
"node_modules/read-cache/node_modules/pify": {
"version": "2.3.0",
- "dev": true,
"license": "MIT",
"engines": {
"node": ">=0.10.0"
@@ -28718,7 +28962,6 @@
},
"node_modules/readdirp": {
"version": "3.6.0",
- "dev": true,
"license": "MIT",
"dependencies": {
"picomatch": "^2.2.1"
@@ -29275,7 +29518,6 @@
},
"node_modules/rimraf": {
"version": "3.0.2",
- "dev": true,
"license": "ISC",
"dependencies": {
"glob": "^7.1.3"
@@ -30267,7 +30509,6 @@
},
"node_modules/source-map-js": {
"version": "1.0.2",
- "dev": true,
"license": "BSD-3-Clause",
"engines": {
"node": ">=0.10.0"
@@ -30743,6 +30984,14 @@
"mixme": "^0.5.1"
}
},
+ "node_modules/streamsearch": {
+ "version": "1.1.0",
+ "resolved": "https://registry.npmjs.org/streamsearch/-/streamsearch-1.1.0.tgz",
+ "integrity": "sha512-Mcc5wHehp9aXz1ax6bZUyY5afg9u2rv5cqQI3mRrYkGC8rW2hM02jWuwjtL++LS5qinSyhj2QfLyNsuc+VsExg==",
+ "engines": {
+ "node": ">=10.0.0"
+ }
+ },
"node_modules/string_decoder": {
"version": "1.1.1",
"dev": true,
@@ -30914,7 +31163,6 @@
},
"node_modules/strip-json-comments": {
"version": "3.1.1",
- "dev": true,
"license": "MIT",
"engines": {
"node": ">=8"
@@ -30942,6 +31190,10 @@
"node": ">=0.8.0"
}
},
+ "node_modules/studio-next": {
+ "resolved": "apps/studio-next",
+ "link": true
+ },
"node_modules/style-loader": {
"version": "3.3.3",
"dev": true,
@@ -30957,6 +31209,28 @@
"webpack": "^5.0.0"
}
},
+ "node_modules/styled-jsx": {
+ "version": "5.1.1",
+ "resolved": "https://registry.npmjs.org/styled-jsx/-/styled-jsx-5.1.1.tgz",
+ "integrity": "sha512-pW7uC1l4mBZ8ugbiZrcIsiIvVx1UmTfw7UkC3Um2tmfUq9Bhk8IiyEIPl6F8agHgjzku6j0xQEZbfA5uSgSaCw==",
+ "dependencies": {
+ "client-only": "0.0.1"
+ },
+ "engines": {
+ "node": ">= 12.0.0"
+ },
+ "peerDependencies": {
+ "react": ">= 16.8.0 || 17.x.x || ^18.0.0-0"
+ },
+ "peerDependenciesMeta": {
+ "@babel/core": {
+ "optional": true
+ },
+ "babel-plugin-macros": {
+ "optional": true
+ }
+ }
+ },
"node_modules/stylehacks": {
"version": "5.1.1",
"dev": true,
@@ -30974,7 +31248,6 @@
},
"node_modules/sucrase": {
"version": "3.32.0",
- "dev": true,
"license": "MIT",
"dependencies": {
"@jridgewell/gen-mapping": "^0.3.2",
@@ -30995,7 +31268,6 @@
},
"node_modules/sucrase/node_modules/commander": {
"version": "4.1.1",
- "dev": true,
"license": "MIT",
"engines": {
"node": ">= 6"
@@ -31003,7 +31275,6 @@
},
"node_modules/sucrase/node_modules/glob": {
"version": "7.1.6",
- "dev": true,
"license": "ISC",
"dependencies": {
"fs.realpath": "^1.0.0",
@@ -31274,9 +31545,9 @@
"link": true
},
"node_modules/tailwindcss": {
- "version": "3.3.2",
- "dev": true,
- "license": "MIT",
+ "version": "3.3.3",
+ "resolved": "https://registry.npmjs.org/tailwindcss/-/tailwindcss-3.3.3.tgz",
+ "integrity": "sha512-A0KgSkef7eE4Mf+nKJ83i75TMyq8HqY3qmFIJSWy8bNt0v1lG7jUcpGpoTFxAwYcWOphcTBLPPJg+bDfhDf52w==",
"dependencies": {
"@alloc/quick-lru": "^5.2.0",
"arg": "^5.0.2",
@@ -31298,7 +31569,6 @@
"postcss-load-config": "^4.0.1",
"postcss-nested": "^6.0.1",
"postcss-selector-parser": "^6.0.11",
- "postcss-value-parser": "^4.2.0",
"resolve": "^1.22.2",
"sucrase": "^3.32.0"
},
@@ -31312,7 +31582,6 @@
},
"node_modules/tailwindcss/node_modules/postcss-import": {
"version": "15.1.0",
- "dev": true,
"license": "MIT",
"dependencies": {
"postcss-value-parser": "^4.0.0",
@@ -31328,7 +31597,6 @@
},
"node_modules/tailwindcss/node_modules/postcss-selector-parser": {
"version": "6.0.13",
- "dev": true,
"license": "MIT",
"dependencies": {
"cssesc": "^3.0.0",
@@ -31598,12 +31866,10 @@
},
"node_modules/text-table": {
"version": "0.2.0",
- "dev": true,
"license": "MIT"
},
"node_modules/thenify": {
"version": "3.3.1",
- "dev": true,
"license": "MIT",
"dependencies": {
"any-promise": "^1.0.0"
@@ -31611,7 +31877,6 @@
},
"node_modules/thenify-all": {
"version": "1.6.0",
- "dev": true,
"license": "MIT",
"dependencies": {
"thenify": ">= 3.1.0 < 4"
@@ -31879,7 +32144,6 @@
},
"node_modules/ts-interface-checker": {
"version": "0.1.13",
- "dev": true,
"license": "Apache-2.0"
},
"node_modules/ts-loader": {
@@ -32340,7 +32604,6 @@
},
"node_modules/type-check": {
"version": "0.4.0",
- "dev": true,
"license": "MIT",
"dependencies": {
"prelude-ls": "^1.2.1"
@@ -32359,7 +32622,6 @@
},
"node_modules/type-fest": {
"version": "0.20.2",
- "dev": true,
"license": "(MIT OR CC0-1.0)",
"engines": {
"node": ">=10"
@@ -32732,7 +32994,6 @@
},
"node_modules/update-browserslist-db": {
"version": "1.0.11",
- "dev": true,
"funding": [
{
"type": "opencollective",
@@ -32899,7 +33160,6 @@
},
"node_modules/util-deprecate": {
"version": "1.0.2",
- "dev": true,
"license": "MIT"
},
"node_modules/util.promisify": {
@@ -33100,7 +33360,6 @@
},
"node_modules/watchpack": {
"version": "2.4.0",
- "dev": true,
"license": "MIT",
"dependencies": {
"glob-to-regexp": "^0.4.1",
@@ -34050,6 +34309,14 @@
"url": "https://github.com/sponsors/sindresorhus"
}
},
+ "node_modules/zod": {
+ "version": "3.21.4",
+ "resolved": "https://registry.npmjs.org/zod/-/zod-3.21.4.tgz",
+ "integrity": "sha512-m46AKbrzKVzOzs/DZgVnG5H55N1sv1M8qZU3A8RIKbs3mrACDNeIOeilDymVb2HdmP8uwshOCF4uJ8uM9rCqJw==",
+ "funding": {
+ "url": "https://github.com/sponsors/colinhacks"
+ }
+ },
"node_modules/zustand": {
"version": "4.3.8",
"license": "MIT",
@@ -34421,12 +34688,16 @@
}
},
"dependencies": {
+ "@aashutoshrathi/word-wrap": {
+ "version": "1.2.6",
+ "resolved": "https://registry.npmjs.org/@aashutoshrathi/word-wrap/-/word-wrap-1.2.6.tgz",
+ "integrity": "sha512-1Yjs2SvM8TflER/OD3cOjhWWOZb58A2t7wpE2S9XfBYTiIl+XFhQG2bjy4Pu1I+EAlCNUzRDYDdFwFYUKvXcIA=="
+ },
"@adobe/css-tools": {
"version": "4.2.0"
},
"@alloc/quick-lru": {
- "version": "5.2.0",
- "dev": true
+ "version": "5.2.0"
},
"@ampproject/remapping": {
"version": "2.2.1",
@@ -38043,22 +38314,23 @@
},
"@eslint-community/eslint-utils": {
"version": "4.4.0",
- "dev": true,
"requires": {
"eslint-visitor-keys": "^3.3.0"
}
},
"@eslint-community/regexpp": {
- "version": "4.5.1",
- "dev": true
+ "version": "4.6.2",
+ "resolved": "https://registry.npmjs.org/@eslint-community/regexpp/-/regexpp-4.6.2.tgz",
+ "integrity": "sha512-pPTNuaAG3QMH+buKyBIGJs3g/S5y0caxw0ygM3YyE6yJFySwiGGSzA+mM3KJ8QQvzeLh3blwgSonkFjgQdxzMw=="
},
"@eslint/eslintrc": {
- "version": "2.0.3",
- "dev": true,
+ "version": "2.1.1",
+ "resolved": "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-2.1.1.tgz",
+ "integrity": "sha512-9t7ZA7NGGK8ckelF0PQCfcxIUzs1Md5rrO6U/c+FIQNanea5UZC0wqKXH4vHBccmu4ZJgZ2idtPeW7+Q2npOEA==",
"requires": {
"ajv": "^6.12.4",
"debug": "^4.3.2",
- "espree": "^9.5.2",
+ "espree": "^9.6.0",
"globals": "^13.19.0",
"ignore": "^5.2.0",
"import-fresh": "^3.2.1",
@@ -38069,7 +38341,8 @@
"dependencies": {
"ajv": {
"version": "6.12.6",
- "dev": true,
+ "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz",
+ "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==",
"requires": {
"fast-deep-equal": "^3.1.1",
"fast-json-stable-stringify": "^2.0.0",
@@ -38079,20 +38352,23 @@
},
"globals": {
"version": "13.20.0",
- "dev": true,
+ "resolved": "https://registry.npmjs.org/globals/-/globals-13.20.0.tgz",
+ "integrity": "sha512-Qg5QtVkCy/kv3FUSlu4ukeZDVf9ee0iXLAUYX13gbR17bnejFTzr4iS9bY7kwCf1NztRNm1t91fjOiyx4CSwPQ==",
"requires": {
"type-fest": "^0.20.2"
}
},
"json-schema-traverse": {
"version": "0.4.1",
- "dev": true
+ "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz",
+ "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg=="
}
}
},
"@eslint/js": {
- "version": "8.41.0",
- "dev": true
+ "version": "8.46.0",
+ "resolved": "https://registry.npmjs.org/@eslint/js/-/js-8.46.0.tgz",
+ "integrity": "sha512-a8TLtmPi8xzPkCbp/OGFUo5yhRkHM2Ko9kOWP4znJr0WAhWyThaw3PnwX4vOTWOAMsV2uRt32PPDcEz63esSaA=="
},
"@fal-works/esbuild-plugin-global-externals": {
"version": "2.1.2",
@@ -38132,8 +38408,9 @@
"version": "4.0.1"
},
"@humanwhocodes/config-array": {
- "version": "0.11.8",
- "dev": true,
+ "version": "0.11.10",
+ "resolved": "https://registry.npmjs.org/@humanwhocodes/config-array/-/config-array-0.11.10.tgz",
+ "integrity": "sha512-KVVjQmNUepDVGXNuoRRdmmEjruj0KfiGSbS8LVc12LMsWDQzRXJ0qdhN8L8uUigKpfEHRhlaQFY0ib1tnUbNeQ==",
"requires": {
"@humanwhocodes/object-schema": "^1.2.1",
"debug": "^4.1.1",
@@ -38141,12 +38418,10 @@
}
},
"@humanwhocodes/module-importer": {
- "version": "1.0.1",
- "dev": true
+ "version": "1.0.1"
},
"@humanwhocodes/object-schema": {
- "version": "1.2.1",
- "dev": true
+ "version": "1.2.1"
},
"@hyperjump/json": {
"version": "0.1.0",
@@ -38954,7 +39229,6 @@
},
"@jridgewell/gen-mapping": {
"version": "0.3.3",
- "dev": true,
"requires": {
"@jridgewell/set-array": "^1.0.1",
"@jridgewell/sourcemap-codec": "^1.4.10",
@@ -38962,12 +39236,10 @@
}
},
"@jridgewell/resolve-uri": {
- "version": "3.1.0",
- "dev": true
+ "version": "3.1.0"
},
"@jridgewell/set-array": {
- "version": "1.1.2",
- "dev": true
+ "version": "1.1.2"
},
"@jridgewell/source-map": {
"version": "0.3.3",
@@ -38978,20 +39250,17 @@
}
},
"@jridgewell/sourcemap-codec": {
- "version": "1.4.15",
- "dev": true
+ "version": "1.4.15"
},
"@jridgewell/trace-mapping": {
"version": "0.3.18",
- "dev": true,
"requires": {
"@jridgewell/resolve-uri": "3.1.0",
"@jridgewell/sourcemap-codec": "1.4.14"
},
"dependencies": {
"@jridgewell/sourcemap-codec": {
- "version": "1.4.14",
- "dev": true
+ "version": "1.4.14"
}
}
},
@@ -39124,14 +39393,23 @@
"tar-fs": "^2.1.1"
}
},
+ "@next/env": {
+ "version": "13.4.12",
+ "resolved": "https://registry.npmjs.org/@next/env/-/env-13.4.12.tgz",
+ "integrity": "sha512-RmHanbV21saP/6OEPBJ7yJMuys68cIf8OBBWd7+uj40LdpmswVAwe1uzeuFyUsd6SfeITWT3XnQfn6wULeKwDQ=="
+ },
"@next/eslint-plugin-next": {
- "version": "13.4.5",
+ "version": "13.4.12",
+ "resolved": "https://registry.npmjs.org/@next/eslint-plugin-next/-/eslint-plugin-next-13.4.12.tgz",
+ "integrity": "sha512-6rhK9CdxEgj/j1qvXIyLTWEaeFv7zOK8yJMulz3Owel0uek0U9MJCGzmKgYxM3aAUBo3gKeywCZKyQnJKto60A==",
"requires": {
"glob": "7.1.7"
},
"dependencies": {
"glob": {
"version": "7.1.7",
+ "resolved": "https://registry.npmjs.org/glob/-/glob-7.1.7.tgz",
+ "integrity": "sha512-OvD9ENzPLbegENnYP5UUfJIirTg4+XwMWGaQfQTY0JenxNvvIKP3U3/tAQSPIu/lHxXYSZmpXlUHeqAIdKzBLQ==",
"requires": {
"fs.realpath": "^1.0.0",
"inflight": "^1.0.4",
@@ -39143,6 +39421,60 @@
}
}
},
+ "@next/swc-darwin-arm64": {
+ "version": "13.4.12",
+ "resolved": "https://registry.npmjs.org/@next/swc-darwin-arm64/-/swc-darwin-arm64-13.4.12.tgz",
+ "integrity": "sha512-deUrbCXTMZ6ZhbOoloqecnUeNpUOupi8SE2tx4jPfNS9uyUR9zK4iXBvH65opVcA/9F5I/p8vDXSYbUlbmBjZg==",
+ "optional": true
+ },
+ "@next/swc-darwin-x64": {
+ "version": "13.4.12",
+ "resolved": "https://registry.npmjs.org/@next/swc-darwin-x64/-/swc-darwin-x64-13.4.12.tgz",
+ "integrity": "sha512-WRvH7RxgRHlC1yb5oG0ZLx8F7uci9AivM5/HGGv9ZyG2Als8Ij64GC3d+mQ5sJhWjusyU6T6V1WKTUoTmOB0zQ==",
+ "optional": true
+ },
+ "@next/swc-linux-arm64-gnu": {
+ "version": "13.4.12",
+ "resolved": "https://registry.npmjs.org/@next/swc-linux-arm64-gnu/-/swc-linux-arm64-gnu-13.4.12.tgz",
+ "integrity": "sha512-YEKracAWuxp54tKiAvvq73PUs9lok57cc8meYRibTWe/VdPB2vLgkTVWFcw31YDuRXdEhdX0fWS6Q+ESBhnEig==",
+ "optional": true
+ },
+ "@next/swc-linux-arm64-musl": {
+ "version": "13.4.12",
+ "resolved": "https://registry.npmjs.org/@next/swc-linux-arm64-musl/-/swc-linux-arm64-musl-13.4.12.tgz",
+ "integrity": "sha512-LhJR7/RAjdHJ2Isl2pgc/JaoxNk0KtBgkVpiDJPVExVWA1c6gzY57+3zWuxuyWzTG+fhLZo2Y80pLXgIJv7g3g==",
+ "optional": true
+ },
+ "@next/swc-linux-x64-gnu": {
+ "version": "13.4.12",
+ "resolved": "https://registry.npmjs.org/@next/swc-linux-x64-gnu/-/swc-linux-x64-gnu-13.4.12.tgz",
+ "integrity": "sha512-1DWLL/B9nBNiQRng+1aqs3OaZcxC16Nf+mOnpcrZZSdyKHek3WQh6j/fkbukObgNGwmCoVevLUa/p3UFTTqgqg==",
+ "optional": true
+ },
+ "@next/swc-linux-x64-musl": {
+ "version": "13.4.12",
+ "resolved": "https://registry.npmjs.org/@next/swc-linux-x64-musl/-/swc-linux-x64-musl-13.4.12.tgz",
+ "integrity": "sha512-kEAJmgYFhp0VL+eRWmUkVxLVunn7oL9Mdue/FS8yzRBVj7Z0AnIrHpTIeIUl1bbdQq1VaoOztnKicAjfkLTRCQ==",
+ "optional": true
+ },
+ "@next/swc-win32-arm64-msvc": {
+ "version": "13.4.12",
+ "resolved": "https://registry.npmjs.org/@next/swc-win32-arm64-msvc/-/swc-win32-arm64-msvc-13.4.12.tgz",
+ "integrity": "sha512-GMLuL/loR6yIIRTnPRY6UGbLL9MBdw2anxkOnANxvLvsml4F0HNIgvnU3Ej4BjbqMTNjD4hcPFdlEow4XHPdZA==",
+ "optional": true
+ },
+ "@next/swc-win32-ia32-msvc": {
+ "version": "13.4.12",
+ "resolved": "https://registry.npmjs.org/@next/swc-win32-ia32-msvc/-/swc-win32-ia32-msvc-13.4.12.tgz",
+ "integrity": "sha512-PhgNqN2Vnkm7XaMdRmmX0ZSwZXQAtamBVSa9A/V1dfKQCV1rjIZeiy/dbBnVYGdj63ANfsOR/30XpxP71W0eww==",
+ "optional": true
+ },
+ "@next/swc-win32-x64-msvc": {
+ "version": "13.4.12",
+ "resolved": "https://registry.npmjs.org/@next/swc-win32-x64-msvc/-/swc-win32-x64-msvc-13.4.12.tgz",
+ "integrity": "sha512-Z+56e/Ljt0bUs+T+jPjhFyxYBcdY2RIq9ELFU+qAMQMteHo7ymbV7CKmlcX59RI9C4YzN8PgMgLyAoi916b5HA==",
+ "optional": true
+ },
"@nicolo-ribaudo/eslint-scope-5-internals": {
"version": "5.1.1-v1",
"dev": true,
@@ -41821,6 +42153,14 @@
"dev": true,
"optional": true
},
+ "@swc/helpers": {
+ "version": "0.5.1",
+ "resolved": "https://registry.npmjs.org/@swc/helpers/-/helpers-0.5.1.tgz",
+ "integrity": "sha512-sJ902EfIzn1Fa+qYmjdQqh8tPsoxyBz+8yBKC2HKUxyezKJFwPGOn7pv4WY6QuQW//ySQi5lJjA/ZT9sNWWNTg==",
+ "requires": {
+ "tslib": "^2.4.0"
+ }
+ },
"@swc/jest": {
"version": "0.2.26",
"dev": true,
@@ -42408,8 +42748,9 @@
"dev": true
},
"@types/react": {
- "version": "18.2.7",
- "dev": true,
+ "version": "18.2.18",
+ "resolved": "https://registry.npmjs.org/@types/react/-/react-18.2.18.tgz",
+ "integrity": "sha512-da4NTSeBv/P34xoZPhtcLkmZuJ+oYaCxHmyHzwaDQo9RQPBeXV+06gEk2FpqEcsX9XrnNLvRpVh6bdavDSjtiQ==",
"requires": {
"@types/prop-types": "*",
"@types/scheduler": "*",
@@ -42417,8 +42758,9 @@
}
},
"@types/react-dom": {
- "version": "18.2.4",
- "dev": true,
+ "version": "18.2.7",
+ "resolved": "https://registry.npmjs.org/@types/react-dom/-/react-dom-18.2.7.tgz",
+ "integrity": "sha512-GRaAEriuT4zp9N4p1i8BDBYmEyfo+xQ3yHjJU4eiK5NDa1RmUZG+unZABUTK4/Ox/M+GaHwb6Ow8rUITrtjszA==",
"requires": {
"@types/react": "*"
}
@@ -42775,8 +43117,7 @@
}
},
"acorn-jsx": {
- "version": "5.3.2",
- "dev": true
+ "version": "5.3.2"
},
"acorn-walk": {
"version": "7.2.0"
@@ -42887,12 +43228,10 @@
"dev": true
},
"any-promise": {
- "version": "1.3.0",
- "dev": true
+ "version": "1.3.0"
},
"anymatch": {
"version": "3.1.3",
- "dev": true,
"requires": {
"normalize-path": "^3.0.0",
"picomatch": "^2.0.4"
@@ -42926,8 +43265,7 @@
}
},
"arg": {
- "version": "5.0.2",
- "dev": true
+ "version": "5.0.2"
},
"argparse": {
"version": "2.0.1"
@@ -43079,7 +43417,6 @@
},
"autoprefixer": {
"version": "10.4.14",
- "dev": true,
"requires": {
"browserslist": "^4.21.5",
"caniuse-lite": "^1.0.30001464",
@@ -43477,8 +43814,7 @@
"dev": true
},
"binary-extensions": {
- "version": "2.2.0",
- "dev": true
+ "version": "2.2.0"
},
"bl": {
"version": "4.1.0",
@@ -43629,7 +43965,6 @@
},
"browserslist": {
"version": "4.21.7",
- "dev": true,
"requires": {
"caniuse-lite": "^1.0.30001489",
"electron-to-chromium": "^1.4.411",
@@ -43681,6 +44016,14 @@
"load-tsconfig": "^0.2.3"
}
},
+ "busboy": {
+ "version": "1.6.0",
+ "resolved": "https://registry.npmjs.org/busboy/-/busboy-1.6.0.tgz",
+ "integrity": "sha512-8SFQbg/0hQ9xy3UNTB0YEnsNBbWfhf7RtnzpL7TkBiTBRfrQ9Fxcnz7VJsleJpyp6rVLvXiuORqjlHi5q+PYuA==",
+ "requires": {
+ "streamsearch": "^1.1.0"
+ }
+ },
"bytes": {
"version": "3.0.0",
"dev": true
@@ -43744,8 +44087,7 @@
"version": "1.0.2"
},
"callsites": {
- "version": "3.1.0",
- "dev": true
+ "version": "3.1.0"
},
"camel-case": {
"version": "4.1.2",
@@ -43760,8 +44102,7 @@
"dev": true
},
"camelcase-css": {
- "version": "2.0.1",
- "dev": true
+ "version": "2.0.1"
},
"camelcase-keys": {
"version": "6.2.2",
@@ -43787,8 +44128,7 @@
}
},
"caniuse-lite": {
- "version": "1.0.30001492",
- "dev": true
+ "version": "1.0.30001492"
},
"capital-case": {
"version": "1.0.4",
@@ -43849,7 +44189,6 @@
},
"chokidar": {
"version": "3.5.3",
- "dev": true,
"requires": {
"anymatch": "~3.1.2",
"braces": "~3.0.2",
@@ -43863,7 +44202,6 @@
"dependencies": {
"glob-parent": {
"version": "5.1.2",
- "dev": true,
"requires": {
"is-glob": "^4.0.1"
}
@@ -44492,8 +44830,7 @@
"dev": true
},
"cssesc": {
- "version": "3.0.0",
- "dev": true
+ "version": "3.0.0"
},
"cssnano": {
"version": "5.1.15",
@@ -45290,8 +45627,7 @@
"dev": true
},
"didyoumean": {
- "version": "1.2.2",
- "dev": true
+ "version": "1.2.2"
},
"diff": {
"version": "4.0.2",
@@ -45307,8 +45643,7 @@
}
},
"dlv": {
- "version": "1.1.3",
- "dev": true
+ "version": "1.1.3"
},
"dns-equal": {
"version": "1.0.0",
@@ -45323,7 +45658,6 @@
},
"doctrine": {
"version": "3.0.0",
- "dev": true,
"requires": {
"esutils": "^2.0.2"
}
@@ -45461,8 +45795,7 @@
}
},
"electron-to-chromium": {
- "version": "1.4.416",
- "dev": true
+ "version": "1.4.416"
},
"emittery": {
"version": "0.8.1",
@@ -45838,8 +46171,7 @@
"dev": true
},
"escape-string-regexp": {
- "version": "4.0.0",
- "dev": true
+ "version": "4.0.0"
},
"escodegen": {
"version": "2.0.0",
@@ -45858,25 +46190,26 @@
}
},
"eslint": {
- "version": "8.41.0",
- "dev": true,
+ "version": "8.46.0",
+ "resolved": "https://registry.npmjs.org/eslint/-/eslint-8.46.0.tgz",
+ "integrity": "sha512-cIO74PvbW0qU8e0mIvk5IV3ToWdCq5FYG6gWPHHkx6gNdjlbAYvtfHmlCMXxjcoVaIdwy/IAt3+mDkZkfvb2Dg==",
"requires": {
"@eslint-community/eslint-utils": "^4.2.0",
- "@eslint-community/regexpp": "^4.4.0",
- "@eslint/eslintrc": "^2.0.3",
- "@eslint/js": "8.41.0",
- "@humanwhocodes/config-array": "^0.11.8",
+ "@eslint-community/regexpp": "^4.6.1",
+ "@eslint/eslintrc": "^2.1.1",
+ "@eslint/js": "^8.46.0",
+ "@humanwhocodes/config-array": "^0.11.10",
"@humanwhocodes/module-importer": "^1.0.1",
"@nodelib/fs.walk": "^1.2.8",
- "ajv": "^6.10.0",
+ "ajv": "^6.12.4",
"chalk": "^4.0.0",
"cross-spawn": "^7.0.2",
"debug": "^4.3.2",
"doctrine": "^3.0.0",
"escape-string-regexp": "^4.0.0",
- "eslint-scope": "^7.2.0",
- "eslint-visitor-keys": "^3.4.1",
- "espree": "^9.5.2",
+ "eslint-scope": "^7.2.2",
+ "eslint-visitor-keys": "^3.4.2",
+ "espree": "^9.6.1",
"esquery": "^1.4.2",
"esutils": "^2.0.2",
"fast-deep-equal": "^3.1.3",
@@ -45886,7 +46219,6 @@
"globals": "^13.19.0",
"graphemer": "^1.4.0",
"ignore": "^5.2.0",
- "import-fresh": "^3.0.0",
"imurmurhash": "^0.1.4",
"is-glob": "^4.0.0",
"is-path-inside": "^3.0.3",
@@ -45896,15 +46228,13 @@
"lodash.merge": "^4.6.2",
"minimatch": "^3.1.2",
"natural-compare": "^1.4.0",
- "optionator": "^0.9.1",
+ "optionator": "^0.9.3",
"strip-ansi": "^6.0.1",
- "strip-json-comments": "^3.1.0",
"text-table": "^0.2.0"
},
"dependencies": {
"ajv": {
"version": "6.12.6",
- "dev": true,
"requires": {
"fast-deep-equal": "^3.1.1",
"fast-json-stable-stringify": "^2.0.0",
@@ -45914,25 +46244,24 @@
},
"globals": {
"version": "13.20.0",
- "dev": true,
"requires": {
"type-fest": "^0.20.2"
}
},
"json-schema-traverse": {
- "version": "0.4.1",
- "dev": true
+ "version": "0.4.1"
},
"optionator": {
- "version": "0.9.1",
- "dev": true,
+ "version": "0.9.3",
+ "resolved": "https://registry.npmjs.org/optionator/-/optionator-0.9.3.tgz",
+ "integrity": "sha512-JjCoypp+jKn1ttEFExxhetCKeJt9zhAgAve5FXHixTvFDW/5aEktX9bufBKLRRMdU7bNtpLfcGu94B3cdEJgjg==",
"requires": {
+ "@aashutoshrathi/word-wrap": "^1.2.3",
"deep-is": "^0.1.3",
"fast-levenshtein": "^2.0.6",
"levn": "^0.4.1",
"prelude-ls": "^1.2.1",
- "type-check": "^0.4.0",
- "word-wrap": "^1.2.3"
+ "type-check": "^0.4.0"
}
}
}
@@ -45985,9 +46314,11 @@
}
},
"eslint-config-next": {
- "version": "13.4.5",
+ "version": "13.4.12",
+ "resolved": "https://registry.npmjs.org/eslint-config-next/-/eslint-config-next-13.4.12.tgz",
+ "integrity": "sha512-ZF0r5vxKaVazyZH/37Au/XItiG7qUOBw+HaH3PeyXltIMwXorsn6bdrl0Nn9N5v5v9spc+6GM2ryjugbjF6X2g==",
"requires": {
- "@next/eslint-plugin-next": "13.4.5",
+ "@next/eslint-plugin-next": "13.4.12",
"@rushstack/eslint-patch": "^1.1.3",
"@typescript-eslint/parser": "^5.42.0",
"eslint-import-resolver-node": "^0.3.6",
@@ -45995,7 +46326,14 @@
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-react": "^7.31.7",
- "eslint-plugin-react-hooks": "^4.5.0"
+ "eslint-plugin-react-hooks": "5.0.0-canary-7118f5dd7-20230705"
+ },
+ "dependencies": {
+ "eslint-plugin-react-hooks": {
+ "version": "5.0.0-canary-7118f5dd7-20230705",
+ "resolved": "https://registry.npmjs.org/eslint-plugin-react-hooks/-/eslint-plugin-react-hooks-5.0.0-canary-7118f5dd7-20230705.tgz",
+ "integrity": "sha512-AZYbMo/NW9chdL7vk6HQzQhT+PvTAEVqWk9ziruUoW2kAOcN5qNyelv70e0F1VNQAbvutOC9oc+xfWycI9FxDw=="
+ }
}
},
"eslint-config-prettier": {
@@ -46202,7 +46540,8 @@
}
},
"eslint-plugin-react-hooks": {
- "version": "4.6.0"
+ "version": "4.6.0",
+ "dev": true
},
"eslint-plugin-security": {
"version": "1.7.1",
@@ -46226,8 +46565,9 @@
"version": "1.10.3"
},
"eslint-scope": {
- "version": "7.2.0",
- "dev": true,
+ "version": "7.2.2",
+ "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-7.2.2.tgz",
+ "integrity": "sha512-dOt21O7lTMhDM+X9mB4GX+DZrZtCUJPL/wlcTqxyrx5IvO0IYtILdtrQGQp+8n5S0gwSVmOf9NQrjMOgfQZlIg==",
"requires": {
"esrecurse": "^4.3.0",
"estraverse": "^5.2.0"
@@ -46247,20 +46587,24 @@
}
},
"eslint-visitor-keys": {
- "version": "3.4.1"
+ "version": "3.4.2",
+ "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-3.4.2.tgz",
+ "integrity": "sha512-8drBzUEyZ2llkpCA67iYrgEssKDUu68V8ChqqOfFupIaG/LCVPUT+CoGJpT77zJprs4T/W7p07LP7zAIMuweVw=="
},
"espree": {
- "version": "9.5.2",
- "dev": true,
+ "version": "9.6.1",
+ "resolved": "https://registry.npmjs.org/espree/-/espree-9.6.1.tgz",
+ "integrity": "sha512-oruZaFkjorTpF32kDSI5/75ViwGeZginGGy2NoOSg3Q9bnwlnmDm4HLnkl0RE3n+njDXR037aY1+x58Z/zFdwQ==",
"requires": {
- "acorn": "^8.8.0",
+ "acorn": "^8.9.0",
"acorn-jsx": "^5.3.2",
"eslint-visitor-keys": "^3.4.1"
},
"dependencies": {
"acorn": {
- "version": "8.8.2",
- "dev": true
+ "version": "8.10.0",
+ "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.10.0.tgz",
+ "integrity": "sha512-F0SAmZ8iUtS//m8DmCTA0jlh6TDKkHQyK6xc6V4KDTyZKA9dnvX9/3sRTVQrWm79glUAZbnmmNcdYwUIHWVybw=="
}
}
},
@@ -46269,14 +46613,12 @@
},
"esquery": {
"version": "1.5.0",
- "dev": true,
"requires": {
"estraverse": "^5.1.0"
}
},
"esrecurse": {
"version": "4.3.0",
- "dev": true,
"requires": {
"estraverse": "^5.2.0"
}
@@ -46689,7 +47031,6 @@
},
"file-entry-cache": {
"version": "6.0.1",
- "dev": true,
"requires": {
"flat-cache": "^3.0.4"
}
@@ -46893,15 +47234,13 @@
},
"flat-cache": {
"version": "3.0.4",
- "dev": true,
"requires": {
"flatted": "^3.1.0",
"rimraf": "^3.0.2"
}
},
"flatted": {
- "version": "3.2.7",
- "dev": true
+ "version": "3.2.7"
},
"flow-parser": {
"version": "0.208.0",
@@ -47018,8 +47357,7 @@
"dev": true
},
"fraction.js": {
- "version": "4.2.0",
- "dev": true
+ "version": "4.2.0"
},
"fragment-cache": {
"version": "0.2.1",
@@ -47103,7 +47441,6 @@
},
"fsevents": {
"version": "2.3.2",
- "dev": true,
"optional": true
},
"function-bind": {
@@ -47231,7 +47568,6 @@
},
"glob": {
"version": "7.2.3",
- "dev": true,
"requires": {
"fs.realpath": "^1.0.0",
"inflight": "^1.0.4",
@@ -47243,7 +47579,6 @@
},
"glob-parent": {
"version": "6.0.2",
- "dev": true,
"requires": {
"is-glob": "^4.0.3"
}
@@ -47256,8 +47591,7 @@
}
},
"glob-to-regexp": {
- "version": "0.4.1",
- "dev": true
+ "version": "0.4.1"
},
"global-modules": {
"version": "2.0.0",
@@ -47321,8 +47655,7 @@
"version": "1.0.4"
},
"graphemer": {
- "version": "1.4.0",
- "dev": true
+ "version": "1.4.0"
},
"gray-matter": {
"version": "2.1.1",
@@ -47700,15 +48033,13 @@
},
"import-fresh": {
"version": "3.3.0",
- "dev": true,
"requires": {
"parent-module": "^1.0.0",
"resolve-from": "^4.0.0"
},
"dependencies": {
"resolve-from": {
- "version": "4.0.0",
- "dev": true
+ "version": "4.0.0"
}
}
},
@@ -47759,8 +48090,7 @@
}
},
"imurmurhash": {
- "version": "0.1.4",
- "dev": true
+ "version": "0.1.4"
},
"indent-string": {
"version": "4.0.0"
@@ -47842,7 +48172,6 @@
},
"is-binary-path": {
"version": "2.1.0",
- "dev": true,
"requires": {
"binary-extensions": "^2.0.0"
}
@@ -48000,8 +48329,7 @@
"dev": true
},
"is-path-inside": {
- "version": "3.0.3",
- "dev": true
+ "version": "3.0.3"
},
"is-plain-obj": {
"version": "1.1.0"
@@ -49727,8 +50055,7 @@
}
},
"jiti": {
- "version": "1.18.2",
- "dev": true
+ "version": "1.18.2"
},
"joycon": {
"version": "3.1.1",
@@ -49972,8 +50299,7 @@
"version": "1.0.0"
},
"json-stable-stringify-without-jsonify": {
- "version": "1.0.1",
- "dev": true
+ "version": "1.0.1"
},
"json-to-ast": {
"version": "2.1.0",
@@ -50080,15 +50406,13 @@
},
"levn": {
"version": "0.4.1",
- "dev": true,
"requires": {
"prelude-ls": "^1.2.1",
"type-check": "~0.4.0"
}
},
"lilconfig": {
- "version": "2.1.0",
- "dev": true
+ "version": "2.1.0"
},
"lines-and-columns": {
"version": "1.2.4"
@@ -50191,8 +50515,7 @@
"dev": true
},
"lodash.merge": {
- "version": "4.6.2",
- "dev": true
+ "version": "4.6.2"
},
"lodash.sortby": {
"version": "4.7.0",
@@ -51056,7 +51379,6 @@
},
"mz": {
"version": "2.7.0",
- "dev": true,
"requires": {
"any-promise": "^1.0.0",
"object-assign": "^4.0.1",
@@ -51064,8 +51386,7 @@
}
},
"nanoid": {
- "version": "3.3.6",
- "dev": true
+ "version": "3.3.6"
},
"nanomatch": {
"version": "1.2.13",
@@ -51109,8 +51430,7 @@
}
},
"natural-compare": {
- "version": "1.4.0",
- "dev": true
+ "version": "1.4.0"
},
"natural-compare-lite": {
"version": "1.4.0",
@@ -51128,6 +51448,42 @@
"version": "2.6.2",
"dev": true
},
+ "next": {
+ "version": "13.4.12",
+ "resolved": "https://registry.npmjs.org/next/-/next-13.4.12.tgz",
+ "integrity": "sha512-eHfnru9x6NRmTMcjQp6Nz0J4XH9OubmzOa7CkWL+AUrUxpibub3vWwttjduu9No16dug1kq04hiUUpo7J3m3Xw==",
+ "requires": {
+ "@next/env": "13.4.12",
+ "@next/swc-darwin-arm64": "13.4.12",
+ "@next/swc-darwin-x64": "13.4.12",
+ "@next/swc-linux-arm64-gnu": "13.4.12",
+ "@next/swc-linux-arm64-musl": "13.4.12",
+ "@next/swc-linux-x64-gnu": "13.4.12",
+ "@next/swc-linux-x64-musl": "13.4.12",
+ "@next/swc-win32-arm64-msvc": "13.4.12",
+ "@next/swc-win32-ia32-msvc": "13.4.12",
+ "@next/swc-win32-x64-msvc": "13.4.12",
+ "@swc/helpers": "0.5.1",
+ "busboy": "1.6.0",
+ "caniuse-lite": "^1.0.30001406",
+ "postcss": "8.4.14",
+ "styled-jsx": "5.1.1",
+ "watchpack": "2.4.0",
+ "zod": "3.21.4"
+ },
+ "dependencies": {
+ "postcss": {
+ "version": "8.4.14",
+ "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.4.14.tgz",
+ "integrity": "sha512-E398TUmfAYFPBSdzgeieK2Y1+1cpdxJx8yXbK/m57nRhKSmk1GB2tO4lbLBtlkfPQTDKfe4Xqv1ASWPpayPEig==",
+ "requires": {
+ "nanoid": "^3.3.4",
+ "picocolors": "^1.0.0",
+ "source-map-js": "^1.0.2"
+ }
+ }
+ }
+ },
"nimma": {
"version": "0.2.2",
"requires": {
@@ -51198,8 +51554,7 @@
"dev": true
},
"node-releases": {
- "version": "2.0.12",
- "dev": true
+ "version": "2.0.12"
},
"nopt": {
"version": "6.0.0",
@@ -51209,12 +51564,10 @@
}
},
"normalize-path": {
- "version": "3.0.0",
- "dev": true
+ "version": "3.0.0"
},
"normalize-range": {
- "version": "0.1.2",
- "dev": true
+ "version": "0.1.2"
},
"normalize-url": {
"version": "6.1.0",
@@ -51312,8 +51665,7 @@
}
},
"object-hash": {
- "version": "3.0.0",
- "dev": true
+ "version": "3.0.0"
},
"object-inspect": {
"version": "1.12.3"
@@ -51542,7 +51894,6 @@
},
"parent-module": {
"version": "1.0.1",
- "dev": true,
"requires": {
"callsites": "^3.0.0"
}
@@ -51646,8 +51997,7 @@
"version": "4.0.1"
},
"pirates": {
- "version": "4.0.5",
- "dev": true
+ "version": "4.0.5"
},
"pkg-dir": {
"version": "5.0.0",
@@ -51721,7 +52071,6 @@
},
"postcss": {
"version": "8.4.24",
- "dev": true,
"requires": {
"nanoid": "^3.3.6",
"picocolors": "^1.0.0",
@@ -51891,7 +52240,6 @@
},
"postcss-js": {
"version": "4.0.1",
- "dev": true,
"requires": {
"camelcase-css": "^2.0.1"
}
@@ -51906,15 +52254,13 @@
},
"postcss-load-config": {
"version": "4.0.1",
- "dev": true,
"requires": {
"lilconfig": "^2.0.5",
"yaml": "^2.1.1"
},
"dependencies": {
"yaml": {
- "version": "2.3.1",
- "dev": true
+ "version": "2.3.1"
}
}
},
@@ -52014,14 +52360,12 @@
},
"postcss-nested": {
"version": "6.0.1",
- "dev": true,
"requires": {
"postcss-selector-parser": "^6.0.11"
},
"dependencies": {
"postcss-selector-parser": {
"version": "6.0.13",
- "dev": true,
"requires": {
"cssesc": "^3.0.0",
"util-deprecate": "^1.0.2"
@@ -52285,8 +52629,7 @@
}
},
"postcss-value-parser": {
- "version": "4.2.0",
- "dev": true
+ "version": "4.2.0"
},
"preferred-pm": {
"version": "3.0.3",
@@ -52298,8 +52641,7 @@
}
},
"prelude-ls": {
- "version": "1.2.1",
- "dev": true
+ "version": "1.2.1"
},
"prettier": {
"version": "2.8.8"
@@ -52873,14 +53215,12 @@
},
"read-cache": {
"version": "1.0.0",
- "dev": true,
"requires": {
"pify": "^2.3.0"
},
"dependencies": {
"pify": {
- "version": "2.3.0",
- "dev": true
+ "version": "2.3.0"
}
}
},
@@ -52999,7 +53339,6 @@
},
"readdirp": {
"version": "3.6.0",
- "dev": true,
"requires": {
"picomatch": "^2.2.1"
}
@@ -53352,7 +53691,6 @@
},
"rimraf": {
"version": "3.0.2",
- "dev": true,
"requires": {
"glob": "^7.1.3"
}
@@ -54018,8 +54356,7 @@
"dev": true
},
"source-map-js": {
- "version": "1.0.2",
- "dev": true
+ "version": "1.0.2"
},
"source-map-loader": {
"version": "3.0.2",
@@ -54365,6 +54702,11 @@
"mixme": "^0.5.1"
}
},
+ "streamsearch": {
+ "version": "1.1.0",
+ "resolved": "https://registry.npmjs.org/streamsearch/-/streamsearch-1.1.0.tgz",
+ "integrity": "sha512-Mcc5wHehp9aXz1ax6bZUyY5afg9u2rv5cqQI3mRrYkGC8rW2hM02jWuwjtL++LS5qinSyhj2QfLyNsuc+VsExg=="
+ },
"string_decoder": {
"version": "1.1.1",
"dev": true,
@@ -54477,8 +54819,7 @@
}
},
"strip-json-comments": {
- "version": "3.1.1",
- "dev": true
+ "version": "3.1.1"
},
"strip-outer": {
"version": "1.0.1",
@@ -54493,10 +54834,57 @@
}
}
},
+ "studio-next": {
+ "version": "file:apps/studio-next",
+ "requires": {
+ "@types/node": "20.4.6",
+ "@types/react": "18.2.18",
+ "@types/react-dom": "18.2.7",
+ "autoprefixer": "10.4.14",
+ "eslint": "8.46.0",
+ "eslint-config-next": "13.4.12",
+ "next": "13.4.12",
+ "postcss": "8.4.27",
+ "react": "18.2.0",
+ "react-dom": "18.2.0",
+ "tailwindcss": "3.3.3",
+ "typescript": "5.1.6"
+ },
+ "dependencies": {
+ "@types/node": {
+ "version": "20.4.6",
+ "resolved": "https://registry.npmjs.org/@types/node/-/node-20.4.6.tgz",
+ "integrity": "sha512-q0RkvNgMweWWIvSMDiXhflGUKMdIxBo2M2tYM/0kEGDueQByFzK4KZAgu5YHGFNxziTlppNpTIBcqHQAxlfHdA=="
+ },
+ "postcss": {
+ "version": "8.4.27",
+ "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.4.27.tgz",
+ "integrity": "sha512-gY/ACJtJPSmUFPDCHtX78+01fHa64FaU4zaaWfuh1MhGJISufJAH4cun6k/8fwsHYeK4UQmENQK+tRLCFJE8JQ==",
+ "requires": {
+ "nanoid": "^3.3.6",
+ "picocolors": "^1.0.0",
+ "source-map-js": "^1.0.2"
+ }
+ },
+ "typescript": {
+ "version": "5.1.6",
+ "resolved": "https://registry.npmjs.org/typescript/-/typescript-5.1.6.tgz",
+ "integrity": "sha512-zaWCozRZ6DLEWAWFrVDz1H6FVXzUSfTy5FUMWsQlU8Ym5JP9eO4xkTIROFCQvhQf61z6O/G6ugw3SgAnvvm+HA=="
+ }
+ }
+ },
"style-loader": {
"version": "3.3.3",
"dev": true
},
+ "styled-jsx": {
+ "version": "5.1.1",
+ "resolved": "https://registry.npmjs.org/styled-jsx/-/styled-jsx-5.1.1.tgz",
+ "integrity": "sha512-pW7uC1l4mBZ8ugbiZrcIsiIvVx1UmTfw7UkC3Um2tmfUq9Bhk8IiyEIPl6F8agHgjzku6j0xQEZbfA5uSgSaCw==",
+ "requires": {
+ "client-only": "0.0.1"
+ }
+ },
"stylehacks": {
"version": "5.1.1",
"dev": true,
@@ -54507,7 +54895,6 @@
},
"sucrase": {
"version": "3.32.0",
- "dev": true,
"requires": {
"@jridgewell/gen-mapping": "^0.3.2",
"commander": "^4.0.0",
@@ -54519,12 +54906,10 @@
},
"dependencies": {
"commander": {
- "version": "4.1.1",
- "dev": true
+ "version": "4.1.1"
},
"glob": {
"version": "7.1.6",
- "dev": true,
"requires": {
"fs.realpath": "^1.0.0",
"inflight": "^1.0.4",
@@ -54717,8 +55102,9 @@
}
},
"tailwindcss": {
- "version": "3.3.2",
- "dev": true,
+ "version": "3.3.3",
+ "resolved": "https://registry.npmjs.org/tailwindcss/-/tailwindcss-3.3.3.tgz",
+ "integrity": "sha512-A0KgSkef7eE4Mf+nKJ83i75TMyq8HqY3qmFIJSWy8bNt0v1lG7jUcpGpoTFxAwYcWOphcTBLPPJg+bDfhDf52w==",
"requires": {
"@alloc/quick-lru": "^5.2.0",
"arg": "^5.0.2",
@@ -54740,14 +55126,12 @@
"postcss-load-config": "^4.0.1",
"postcss-nested": "^6.0.1",
"postcss-selector-parser": "^6.0.11",
- "postcss-value-parser": "^4.2.0",
"resolve": "^1.22.2",
"sucrase": "^3.32.0"
},
"dependencies": {
"postcss-import": {
"version": "15.1.0",
- "dev": true,
"requires": {
"postcss-value-parser": "^4.0.0",
"read-cache": "^1.0.0",
@@ -54756,7 +55140,6 @@
},
"postcss-selector-parser": {
"version": "6.0.13",
- "dev": true,
"requires": {
"cssesc": "^3.0.0",
"util-deprecate": "^1.0.2"
@@ -54922,19 +55305,16 @@
}
},
"text-table": {
- "version": "0.2.0",
- "dev": true
+ "version": "0.2.0"
},
"thenify": {
"version": "3.3.1",
- "dev": true,
"requires": {
"any-promise": "^1.0.0"
}
},
"thenify-all": {
"version": "1.6.0",
- "dev": true,
"requires": {
"thenify": ">= 3.1.0 < 4"
}
@@ -55112,8 +55492,7 @@
"dev": true
},
"ts-interface-checker": {
- "version": "0.1.13",
- "dev": true
+ "version": "0.1.13"
},
"ts-loader": {
"version": "9.4.3",
@@ -55384,7 +55763,6 @@
},
"type-check": {
"version": "0.4.0",
- "dev": true,
"requires": {
"prelude-ls": "^1.2.1"
}
@@ -55394,8 +55772,7 @@
"dev": true
},
"type-fest": {
- "version": "0.20.2",
- "dev": true
+ "version": "0.20.2"
},
"type-is": {
"version": "1.6.18",
@@ -55625,7 +56002,6 @@
},
"update-browserslist-db": {
"version": "1.0.11",
- "dev": true,
"requires": {
"escalade": "^3.1.1",
"picocolors": "^1.0.0"
@@ -55721,8 +56097,7 @@
}
},
"util-deprecate": {
- "version": "1.0.2",
- "dev": true
+ "version": "1.0.2"
},
"util.promisify": {
"version": "1.0.1",
@@ -55860,7 +56235,6 @@
},
"watchpack": {
"version": "2.4.0",
- "dev": true,
"requires": {
"glob-to-regexp": "^0.4.1",
"graceful-fs": "^4.1.2"
@@ -56521,6 +56895,11 @@
"yocto-queue": {
"version": "0.1.0"
},
+ "zod": {
+ "version": "3.21.4",
+ "resolved": "https://registry.npmjs.org/zod/-/zod-3.21.4.tgz",
+ "integrity": "sha512-m46AKbrzKVzOzs/DZgVnG5H55N1sv1M8qZU3A8RIKbs3mrACDNeIOeilDymVb2HdmP8uwshOCF4uJ8uM9rCqJw=="
+ },
"zustand": {
"version": "4.3.8",
"requires": {
diff --git a/package.json b/package.json
index 0ee333ef3..aad8c86e8 100644
--- a/package.json
+++ b/package.json
@@ -9,6 +9,7 @@
"dev": "turbo run dev",
"ds": "turbo run dev --no-cache --continue --filter=design-system...",
"studio": "turbo run dev --filter=studio...",
+ "studio-next": "turbo run dev --no-cache --filter=studio-next...",
"clean": "turbo run clean && rm -rf node_modules",
"build": "turbo run build",
"test": "turbo run test",
@@ -16,7 +17,8 @@
"version-packages": "changeset version",
"publish": "changeset publish",
"build:studio": "turbo run build --no-cache --filter=studio...",
- "build:ds": "turbo run build --filter=design-system..."
+ "build:ds": "turbo run build --filter=design-system...",
+ "build:studio-next": "turbo run build --no-cache --filter=studio-next..."
},
"devDependencies": {
"esbuild": "^0.19.0",