Skip to content

Commit

Permalink
codemod
Browse files Browse the repository at this point in the history
  • Loading branch information
jthrilly committed Nov 21, 2024
1 parent b51bd43 commit ea02108
Show file tree
Hide file tree
Showing 2 changed files with 1,475 additions and 381 deletions.
126 changes: 66 additions & 60 deletions apps/analytics-web/package.json
Original file line number Diff line number Diff line change
@@ -1,62 +1,68 @@
{
"name": "analytics-web",
"version": "1.0.0",
"private": true,
"type": "module",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"test": "vitest run",
"test:watch": "vitest watch",
"generate": "npx drizzle-kit generate:pg",
"migrate": "npx tsx scripts/migrate.ts",
"seed": "pnpm run generate && pnpm run migrate && npx tsx scripts/seed.ts"
},
"dependencies": {
"@clerk/nextjs": "^6.3.4",
"@codaco/analytics": "workspace:*",
"@codaco/ui": "workspace:*",
"@radix-ui/react-checkbox": "^1.1.2",
"@radix-ui/react-dialog": "^1.1.2",
"@radix-ui/react-dropdown-menu": "^2.1.2",
"@radix-ui/react-select": "^2.1.2",
"@radix-ui/react-slot": "^1.1.0",
"@radix-ui/react-switch": "^1.1.1",
"@radix-ui/react-tabs": "^1.1.1",
"@tanstack/react-table": "^8.20.5",
"@vercel/kv": "^3.0.0",
"@vercel/postgres": "^0.10.0",
"autoprefixer": "^10.4.20",
"class-variance-authority": "^0.7.0",
"clsx": "^2.1.1",
"dotenv": "^16.4.5",
"drizzle-orm": "^0.36.1",
"i18n-iso-countries": "^7.13.0",
"lucide-react": "^0.363.0",
"next": "^14.2.18",
"papaparse": "^5.4.1",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"tailwind-merge": "^2.0.0",
"zod": "^3.23.8"
},
"devDependencies": {
"@codaco/tailwind-config": "workspace:*",
"@codaco/tsconfig": "workspace:*",
"@faker-js/faker": "^8.2.0",
"@testing-library/react": "^14.1.2",
"@types/node": "^20.5.2",
"@types/papaparse": "^5.3.15",
"@types/react": "^18.3.12",
"@types/react-dom": "^18.3.1",
"@vitejs/plugin-react": "^4.3.3",
"drizzle-kit": "^0.28.0",
"jsdom": "^25.0.1",
"next-test-api-route-handler": "^4.0.14",
"tailwindcss": "^3.4.15",
"typescript": "^5.6.3",
"vite-tsconfig-paths": "^5.1.2",
"vitest": "^2.1.5"
}
"name": "analytics-web",
"version": "1.0.0",
"private": true,
"type": "module",
"scripts": {
"dev": "next dev --turbopack",
"build": "next build",
"start": "next start",
"test": "vitest run",
"test:watch": "vitest watch",
"generate": "npx drizzle-kit generate:pg",
"migrate": "npx tsx scripts/migrate.ts",
"seed": "pnpm run generate && pnpm run migrate && npx tsx scripts/seed.ts"
},
"dependencies": {
"@clerk/nextjs": "^6.3.4",
"@codaco/analytics": "workspace:*",
"@codaco/ui": "workspace:*",
"@radix-ui/react-checkbox": "^1.1.2",
"@radix-ui/react-dialog": "^1.1.2",
"@radix-ui/react-dropdown-menu": "^2.1.2",
"@radix-ui/react-select": "^2.1.2",
"@radix-ui/react-slot": "^1.1.0",
"@radix-ui/react-switch": "^1.1.1",
"@radix-ui/react-tabs": "^1.1.1",
"@tanstack/react-table": "^8.20.5",
"@vercel/kv": "^3.0.0",
"@vercel/postgres": "^0.10.0",
"autoprefixer": "^10.4.20",
"class-variance-authority": "^0.7.0",
"clsx": "^2.1.1",
"dotenv": "^16.4.5",
"drizzle-orm": "^0.36.1",
"i18n-iso-countries": "^7.13.0",
"lucide-react": "^0.363.0",
"next": "15.0.3",
"papaparse": "^5.4.1",
"react": "19.0.0-rc-66855b96-20241106",
"react-dom": "19.0.0-rc-66855b96-20241106",
"tailwind-merge": "^2.0.0",
"zod": "^3.23.8"
},
"devDependencies": {
"@codaco/tailwind-config": "workspace:*",
"@codaco/tsconfig": "workspace:*",
"@faker-js/faker": "^8.2.0",
"@testing-library/react": "^14.1.2",
"@types/node": "^20.5.2",
"@types/papaparse": "^5.3.15",
"@types/react": "npm:[email protected]",
"@types/react-dom": "npm:[email protected]",
"@vitejs/plugin-react": "^4.3.3",
"drizzle-kit": "^0.28.0",
"jsdom": "^25.0.1",
"next-test-api-route-handler": "^4.0.14",
"tailwindcss": "^3.4.15",
"typescript": "^5.6.3",
"vite-tsconfig-paths": "^5.1.2",
"vitest": "^2.1.5"
},
"pnpm": {
"overrides": {
"@types/react": "npm:[email protected]",
"@types/react-dom": "npm:[email protected]"
}
}
}
Loading

0 comments on commit ea02108

Please sign in to comment.