feat: add monorepo

This commit is contained in:
Mauricio Siu
2024-10-27 22:16:31 -06:00
parent fd1f028077
commit 9321ed16ed
319 changed files with 79066 additions and 355 deletions

View File

@@ -1,41 +1,48 @@
{
"name": "website",
"license": "MIT",
"version": "0.1.0",
"private": true,
"workspaces": ["apps/*", "packages/*"],
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"docker:build:canary": "./apps/dokploy/docker/build.sh canary",
"docs:dev": "pnpm --filter=docs run dev",
"docs:build": "pnpm --filter=docs run build",
"docs:typecheck": "pnpm --filter=docs run typecheck",
"website:dev": "pnpm --filter=website run dev",
"website:build": "pnpm --filter=website run build",
"website:typecheck": "pnpm --filter=website run typecheck",
"typecheck": "pnpm -r run typecheck",
"format": "prettier --write \"**/*.{ts,tsx,md}\"",
"build": "pnpm -r run build",
"format-and-lint": "biome check .",
"check": "biome check --write --no-errors-on-unmatched --files-ignore-unknown=true",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"@headlessui/react": "^1.7.17",
"@headlessui/tailwindcss": "^0.2.0",
"@radix-ui/react-select": "^2.0.0",
"@radix-ui/react-slot": "^1.0.2",
"@radix-ui/react-switch": "^1.0.3",
"@types/node": "20.4.6",
"autoprefixer": "^10.4.12",
"class-variance-authority": "^0.7.0",
"clsx": "^2.1.0",
"framer-motion": "^11.0.24",
"lucide-react": "0.364.0",
"next": "14.2.2",
"next-intl": "^3.19.0",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-ga4": "^2.1.0",
"tailwind-merge": "^2.2.2",
"tailwindcss": "^3.4.1",
"tailwindcss-animate": "^1.0.7",
"@radix-ui/react-tabs": "1.1.1"
"format-and-lint:fix": "biome check . --write",
"prepare": "node .husky/install.mjs"
},
"devDependencies": {
"typescript": "5.1.6",
"dotenv": "16.4.5",
"esbuild": "0.20.2",
"tsx": "4.16.2",
"lint-staged": "^15.2.7",
"@biomejs/biome": "1.8.3",
"husky": "^9.1.6",
"@commitlint/cli": "^19.3.0",
"@commitlint/config-conventional": "^19.2.2",
"@types/node": "^18.17.0"
},
"packageManager": "pnpm@9.5.0",
"engines": {
"node": "^18.18.0",
"pnpm": ">=9.5.0"
},
"lint-staged": {
"*": [
"biome check --write --no-errors-on-unmatched --files-ignore-unknown=true"
]
},
"commitlint": {
"extends": ["@commitlint/config-conventional"]
},
"resolutions": {
"@types/react": "18.3.5",
"@types/react-dom": "18.3.0"
}