This commit is contained in:
Saatvik Arya 2024-07-24 22:13:18 -07:00
parent cde9545e39
commit b5245b6ed3
10 changed files with 27931 additions and 33 deletions

2
.npmrc Normal file
View file

@ -0,0 +1,2 @@
registry=https://registry.npmjs.org/
link-workspace-packages=true

View file

@ -12,6 +12,10 @@
},
"license": "MIT",
"dependencies": {
"@hono/zod-validator": "^0.2.1"
}
"@hono/zod-validator": "^0.2.1",
"hono": "^4.5.1"
},
"devDependencies": {
"@cloudflare/workers-types": "^4.20240614.0"
}
}

View file

@ -2,12 +2,12 @@
"name": "@repo/web",
"version": "1.0.0",
"private": true,
"packageManager": "yarn@1.22.21",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "eslint . --max-warnings 0",
"tsc": "tsc --noEmit --incremental",
"cf-typegen": "wrangler types --env-interface CloudflareEnv env.d.ts",
"pages:build": "pnpm dlx @cloudflare/next-on-pages",
"preview": "pnpm run pages:build && wrangler pages dev",
@ -21,7 +21,9 @@
"@radix-ui/react-popover": "^1.0.7",
"@radix-ui/react-slot": "^1.1.0",
"@sentry/nextjs": "^8",
"clsx": "^2.1.1",
"cmdk": "^1.0.0",
"drizzle-orm": "0.30.0",
"lowlight": "^3.1.0",
"million": "^3.1.6",
"next": "^14.1.1",
@ -33,16 +35,20 @@
"use-debounce": "^10.0.1"
},
"devDependencies": {
"@cloudflare/next-on-pages": "1",
"@next/eslint-plugin-next": "^14.1.1",
"@repo/eslint-config": "*",
"@repo/typescript-config": "*",
"@repo/tailwind-config": "*",
"@repo/shared-types": "*",
"@repo/tailwind-config": "*",
"@repo/typescript-config": "*",
"@types/eslint": "^8.56.5",
"@types/node": "^20.11.24",
"@types/react": "^18.2.61",
"@types/react-dom": "^18.2.19",
"drizzle-kit": "0.21.2",
"eslint": "^8.57.0",
"typescript": "^5.3.3"
"postcss": "^8.4.38",
"typescript": "^5.3.3",
"wrangler": "^3.66.0"
}
}

View file

@ -11,35 +11,20 @@
},
"devDependencies": {
"@clack/prompts": "^0.7.0",
"@cloudflare/next-on-pages": "1",
"@cloudflare/workers-types": "^4.20240614.0",
"@repo/eslint-config": "*",
"@repo/shared-types": "*",
"@repo/tailwind-config": "*",
"@repo/typescript-config": "*",
"@repo/ui": "*",
"@tailwindcss/typography": "^0.5.13",
"@types/turndown": "^5.0.4",
"autoprefixer": "^10.4.19",
"drizzle-kit": "0.21.2",
"eslint-plugin-next-on-pages": "^1.11.3",
"lint-staged": "^15.2.5",
"postcss": "^8.4.38",
"prettier": "^3.3.3",
"readline-sync": "^1.4.10",
"tailwindcss": "^3.4.3",
"tailwindcss-animate": "^1.0.7",
"turbo": "2.0.3",
"vercel": "^34.2.0"
"typescript": "^5.5.4"
},
"engines": {
"node": ">=18"
},
"packageManager": "yarn@1.22.21",
"workspaces": [
"apps/*",
"packages/*"
],
"dependencies": {
"@ai-sdk/anthropic": "^0.0.15",
"@ai-sdk/google": "^0.0.15",
@ -80,7 +65,6 @@
"cheerio": "^1.0.0-rc.12",
"compromise": "^14.13.0",
"crypto-browserify": "^3.12.0",
"drizzle-orm": "0.30.0",
"eslint-config-turbo": "^2.0.6",
"framer-motion": "^11.2.6",
"geist": "^1.3.0",
@ -122,5 +106,6 @@
],
"lint-staged": {
"**/*": "prettier --write --ignore-unknown"
}
},
"packageManager": "pnpm@9.6.0+sha256.dae0f7e822c56b20979bb5965e3b73b8bdabb6b8b8ef121da6d857508599ca35"
}

View file

@ -5,7 +5,6 @@ const project = resolve(process.cwd(), "tsconfig.json");
/** @type {import("eslint").Linter.Config} */
module.exports = {
extends: [
"next/core-web-vitals",
"plugin:@typescript-eslint/recommended-type-checked",
"plugin:@typescript-eslint/stylistic-type-checked",
"plugin:eslint-plugin-next-on-pages/recommended",

View file

@ -8,12 +8,14 @@
"react-internal.js"
],
"devDependencies": {
"@vercel/style-guide": "^5.2.0",
"eslint-config-turbo": "^1.12.4",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-only-warn": "^1.1.0",
"@typescript-eslint/parser": "^v6.21.0",
"@typescript-eslint/eslint-plugin": "^v6.21.0",
"@typescript-eslint/parser": "^v6.21.0",
"@vercel/style-guide": "^5.2.0",
"eslint-config-next": "^14.2.5",
"eslint-config-prettier": "^9.1.0",
"eslint-config-turbo": "^1.12.4",
"eslint-plugin-only-warn": "^1.1.0",
"eslint-plugin-next-on-pages": "^1.11.3",
"typescript": "^5.3.3"
}
}

View file

@ -12,6 +12,7 @@
"lucide-react": "^0.378.0",
"tailwind-merge": "^2.3.0",
"tailwind-scrollbar": "^3.1.0",
"tailwindcss-animate": "^1.0.7"
"tailwindcss-animate": "^1.0.7",
"@tailwindcss/typography": "^0.5.13"
}
}

View file

@ -8,15 +8,22 @@
},
"devDependencies": {
"@repo/eslint-config": "*",
"@repo/typescript-config": "*",
"@repo/tailwind-config": "*",
"@repo/typescript-config": "*",
"@turbo/gen": "^1.12.4",
"@types/node": "^20.11.24",
"@types/eslint": "^8.56.5",
"@types/node": "^20.11.24",
"@types/react": "^18.2.61",
"@types/react-dom": "^18.2.19",
"eslint": "^8.57.0",
"react": "^18.2.0",
"typescript": "^5.3.3"
},
"dependencies": {
"@radix-ui/react-dialog": "^1.0.5",
"class-variance-authority": "^0.7.0",
"clsx": "^2.1.1",
"cmdk": "^1.0.0",
"tailwind-merge": "^2.3.0"
}
}

27889
pnpm-lock.yaml generated Normal file

File diff suppressed because it is too large Load diff

3
pnpm-workspace.yaml Normal file
View file

@ -0,0 +1,3 @@
packages:
- 'packages/*'
- 'apps/*'