mirror of
https://github.com/fosrl/pangolin.git
synced 2026-01-28 22:00:51 +00:00
Bumps the prod-patch-updates group with 6 updates in the / directory: | Package | From | To | | --- | --- | --- | | [@react-email/components](https://github.com/resend/react-email/tree/HEAD/packages/components) | `1.0.1` | `1.0.2` | | [@react-email/tailwind](https://github.com/resend/react-email/tree/HEAD/packages/tailwind) | `2.0.1` | `2.0.2` | | [@tailwindcss/forms](https://github.com/tailwindlabs/tailwindcss-forms) | `0.5.10` | `0.5.11` | | [drizzle-orm](https://github.com/drizzle-team/drizzle-orm) | `0.45.0` | `0.45.1` | | [eslint](https://github.com/eslint/eslint) | `9.39.1` | `9.39.2` | | [posthog-node](https://github.com/PostHog/posthog-js/tree/HEAD/packages/node) | `5.17.2` | `5.17.4` | Updates `@react-email/components` from 1.0.1 to 1.0.2 - [Release notes](https://github.com/resend/react-email/releases) - [Changelog](https://github.com/resend/react-email/blob/canary/packages/components/CHANGELOG.md) - [Commits](https://github.com/resend/react-email/commits/@react-email/components@1.0.2/packages/components) Updates `@react-email/tailwind` from 2.0.1 to 2.0.2 - [Release notes](https://github.com/resend/react-email/releases) - [Changelog](https://github.com/resend/react-email/blob/canary/packages/tailwind/CHANGELOG.md) - [Commits](https://github.com/resend/react-email/commits/@react-email/tailwind@2.0.2/packages/tailwind) Updates `@tailwindcss/forms` from 0.5.10 to 0.5.11 - [Release notes](https://github.com/tailwindlabs/tailwindcss-forms/releases) - [Changelog](https://github.com/tailwindlabs/tailwindcss-forms/blob/main/CHANGELOG.md) - [Commits](https://github.com/tailwindlabs/tailwindcss-forms/compare/v0.5.10...v0.5.11) Updates `drizzle-orm` from 0.45.0 to 0.45.1 - [Release notes](https://github.com/drizzle-team/drizzle-orm/releases) - [Commits](https://github.com/drizzle-team/drizzle-orm/compare/0.45.0...0.45.1) Updates `eslint` from 9.39.1 to 9.39.2 - [Release notes](https://github.com/eslint/eslint/releases) - [Commits](https://github.com/eslint/eslint/compare/v9.39.1...v9.39.2) Updates `posthog-node` from 5.17.2 to 5.17.4 - [Release notes](https://github.com/PostHog/posthog-js/releases) - [Changelog](https://github.com/PostHog/posthog-js/blob/main/packages/node/CHANGELOG.md) - [Commits](https://github.com/PostHog/posthog-js/commits/posthog-node@5.17.4/packages/node) --- updated-dependencies: - dependency-name: "@react-email/components" dependency-version: 1.0.2 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: prod-patch-updates - dependency-name: "@react-email/tailwind" dependency-version: 2.0.2 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: prod-patch-updates - dependency-name: "@tailwindcss/forms" dependency-version: 0.5.11 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: prod-patch-updates - dependency-name: drizzle-orm dependency-version: 0.45.1 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: prod-patch-updates - dependency-name: eslint dependency-version: 9.39.2 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: prod-patch-updates - dependency-name: posthog-node dependency-version: 5.17.4 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: prod-patch-updates ... Signed-off-by: dependabot[bot] <support@github.com>
182 lines
7.4 KiB
JSON
182 lines
7.4 KiB
JSON
{
|
|
"name": "@fosrl/pangolin",
|
|
"version": "0.0.0",
|
|
"private": true,
|
|
"type": "module",
|
|
"description": "Tunneled Reverse Proxy Management Server with Identity and Access Control and Dashboard UI",
|
|
"homepage": "https://github.com/fosrl/pangolin",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/fosrl/pangolin"
|
|
},
|
|
"license": "SEE LICENSE IN LICENSE AND README.md",
|
|
"scripts": {
|
|
"dev": "NODE_ENV=development ENVIRONMENT=dev tsx watch server/index.ts",
|
|
"db:pg:generate": "drizzle-kit generate --config=./drizzle.pg.config.ts",
|
|
"db:sqlite:generate": "drizzle-kit generate --config=./drizzle.sqlite.config.ts",
|
|
"db:pg:push": "npx tsx server/db/pg/migrate.ts",
|
|
"db:sqlite:push": "npx tsx server/db/sqlite/migrate.ts",
|
|
"db:sqlite:studio": "drizzle-kit studio --config=./drizzle.sqlite.config.ts",
|
|
"db:pg:studio": "drizzle-kit studio --config=./drizzle.pg.config.ts",
|
|
"db:clear-migrations": "rm -rf server/migrations",
|
|
"set:oss": "echo 'export const build = \"oss\" as \"saas\" | \"enterprise\" | \"oss\";' > server/build.ts && cp tsconfig.oss.json tsconfig.json",
|
|
"set:saas": "echo 'export const build = \"saas\" as \"saas\" | \"enterprise\" | \"oss\";' > server/build.ts && cp tsconfig.saas.json tsconfig.json",
|
|
"set:enterprise": "echo 'export const build = \"enterprise\" as \"saas\" | \"enterprise\" | \"oss\";' > server/build.ts && cp tsconfig.enterprise.json tsconfig.json",
|
|
"set:sqlite": "echo 'export * from \"./sqlite\";\nexport const driver: \"pg\" | \"sqlite\" = \"sqlite\";' > server/db/index.ts",
|
|
"set:pg": "echo 'export * from \"./pg\";\nexport const driver: \"pg\" | \"sqlite\" = \"pg\";' > server/db/index.ts",
|
|
"next:build": "next build",
|
|
"build:sqlite": "mkdir -p dist && next build && node esbuild.mjs -e server/index.ts -o dist/server.mjs && node esbuild.mjs -e server/setup/migrationsSqlite.ts -o dist/migrations.mjs",
|
|
"build:pg": "mkdir -p dist && next build && node esbuild.mjs -e server/index.ts -o dist/server.mjs && node esbuild.mjs -e server/setup/migrationsPg.ts -o dist/migrations.mjs",
|
|
"start": "ENVIRONMENT=prod node dist/migrations.mjs && ENVIRONMENT=prod NODE_ENV=development node --enable-source-maps dist/server.mjs",
|
|
"email": "email dev --dir server/emails/templates --port 3005",
|
|
"build:cli": "node esbuild.mjs -e cli/index.ts -o dist/cli.mjs",
|
|
"format": "prettier --write ."
|
|
},
|
|
"dependencies": {
|
|
"@asteasolutions/zod-to-openapi": "8.2.0",
|
|
"@aws-sdk/client-s3": "3.955.0",
|
|
"@faker-js/faker": "10.1.0",
|
|
"@headlessui/react": "2.2.9",
|
|
"@hookform/resolvers": "5.2.2",
|
|
"@monaco-editor/react": "4.7.0",
|
|
"@node-rs/argon2": "2.0.2",
|
|
"@oslojs/crypto": "1.0.1",
|
|
"@oslojs/encoding": "1.1.0",
|
|
"@radix-ui/react-avatar": "1.1.11",
|
|
"@radix-ui/react-checkbox": "1.3.3",
|
|
"@radix-ui/react-collapsible": "1.1.12",
|
|
"@radix-ui/react-dialog": "1.1.15",
|
|
"@radix-ui/react-dropdown-menu": "2.1.16",
|
|
"@radix-ui/react-icons": "1.3.2",
|
|
"@radix-ui/react-label": "2.1.8",
|
|
"@radix-ui/react-popover": "1.1.15",
|
|
"@radix-ui/react-progress": "1.1.8",
|
|
"@radix-ui/react-radio-group": "1.3.8",
|
|
"@radix-ui/react-scroll-area": "1.2.10",
|
|
"@radix-ui/react-select": "2.2.6",
|
|
"@radix-ui/react-separator": "1.1.8",
|
|
"@radix-ui/react-slot": "1.2.4",
|
|
"@radix-ui/react-switch": "1.2.6",
|
|
"@radix-ui/react-tabs": "1.1.13",
|
|
"@radix-ui/react-toast": "1.2.15",
|
|
"@radix-ui/react-tooltip": "1.2.8",
|
|
"@react-email/components": "1.0.2",
|
|
"@react-email/render": "2.0.0",
|
|
"@react-email/tailwind": "2.0.2",
|
|
"@simplewebauthn/browser": "13.2.2",
|
|
"@simplewebauthn/server": "13.2.2",
|
|
"@tailwindcss/forms": "0.5.11",
|
|
"@tanstack/react-query": "5.90.12",
|
|
"@tanstack/react-table": "8.21.3",
|
|
"arctic": "3.7.0",
|
|
"axios": "1.13.2",
|
|
"better-sqlite3": "11.9.1",
|
|
"canvas-confetti": "1.9.4",
|
|
"class-variance-authority": "0.7.1",
|
|
"clsx": "2.1.1",
|
|
"cmdk": "1.1.1",
|
|
"cookie": "1.1.1",
|
|
"cookie-parser": "1.4.7",
|
|
"cookies": "0.9.1",
|
|
"cors": "2.8.5",
|
|
"crypto-js": "4.2.0",
|
|
"d3": "7.9.0",
|
|
"date-fns": "4.1.0",
|
|
"drizzle-orm": "0.45.1",
|
|
"eslint": "9.39.2",
|
|
"eslint-config-next": "16.1.0",
|
|
"express": "5.2.1",
|
|
"express-rate-limit": "8.2.1",
|
|
"glob": "13.0.0",
|
|
"helmet": "8.1.0",
|
|
"http-errors": "2.0.1",
|
|
"i": "0.3.7",
|
|
"input-otp": "1.4.2",
|
|
"ioredis": "5.8.2",
|
|
"jmespath": "0.16.0",
|
|
"js-yaml": "4.1.1",
|
|
"jsonwebtoken": "9.0.3",
|
|
"lucide-react": "0.562.0",
|
|
"maxmind": "5.0.1",
|
|
"moment": "2.30.1",
|
|
"next": "15.5.9",
|
|
"next-intl": "4.6.1",
|
|
"next-themes": "0.4.6",
|
|
"nextjs-toploader": "3.9.17",
|
|
"node-cache": "5.1.2",
|
|
"node-fetch": "3.3.2",
|
|
"nodemailer": "7.0.11",
|
|
"npm": "11.7.0",
|
|
"nprogress": "0.2.0",
|
|
"oslo": "1.2.1",
|
|
"pg": "8.16.3",
|
|
"posthog-node": "5.17.4",
|
|
"qrcode.react": "4.2.0",
|
|
"react": "19.2.3",
|
|
"react-day-picker": "9.13.0",
|
|
"react-dom": "19.2.3",
|
|
"react-easy-sort": "1.8.0",
|
|
"react-hook-form": "7.68.0",
|
|
"react-icons": "5.5.0",
|
|
"rebuild": "0.1.2",
|
|
"recharts": "2.15.4",
|
|
"reodotdev": "1.0.0",
|
|
"resend": "6.6.0",
|
|
"semver": "7.7.3",
|
|
"stripe": "20.1.0",
|
|
"swagger-ui-express": "5.0.1",
|
|
"tailwind-merge": "3.4.0",
|
|
"topojson-client": "3.1.0",
|
|
"tw-animate-css": "1.4.0",
|
|
"uuid": "13.0.0",
|
|
"vaul": "1.1.2",
|
|
"visionscarto-world-atlas": "1.0.0",
|
|
"winston": "3.19.0",
|
|
"winston-daily-rotate-file": "5.0.0",
|
|
"ws": "8.18.3",
|
|
"yaml": "2.8.2",
|
|
"yargs": "18.0.0",
|
|
"zod": "4.2.1",
|
|
"zod-validation-error": "5.0.0"
|
|
},
|
|
"devDependencies": {
|
|
"@dotenvx/dotenvx": "1.51.2",
|
|
"@esbuild-plugins/tsconfig-paths": "0.1.2",
|
|
"@tailwindcss/postcss": "4.1.18",
|
|
"@tanstack/react-query-devtools": "5.91.1",
|
|
"@types/better-sqlite3": "7.6.13",
|
|
"@types/cookie-parser": "1.4.10",
|
|
"@types/cors": "2.8.19",
|
|
"@types/crypto-js": "4.2.2",
|
|
"@types/d3": "7.4.3",
|
|
"@types/express": "5.0.6",
|
|
"@types/express-session": "1.18.2",
|
|
"@types/jmespath": "0.15.2",
|
|
"@types/jsonwebtoken": "9.0.10",
|
|
"@types/node": "24.10.2",
|
|
"@types/nodemailer": "7.0.4",
|
|
"@types/nprogress": "0.2.3",
|
|
"@types/pg": "8.16.0",
|
|
"@types/react": "19.2.7",
|
|
"@types/react-dom": "19.2.3",
|
|
"@types/semver": "7.7.1",
|
|
"@types/swagger-ui-express": "4.1.8",
|
|
"@types/topojson-client": "3.1.5",
|
|
"@types/ws": "8.18.1",
|
|
"@types/yargs": "17.0.35",
|
|
"@types/js-yaml": "4.0.9",
|
|
"babel-plugin-react-compiler": "1.0.0",
|
|
"drizzle-kit": "0.31.8",
|
|
"esbuild": "0.27.2",
|
|
"esbuild-node-externals": "1.20.1",
|
|
"postcss": "8.5.6",
|
|
"prettier": "3.7.4",
|
|
"react-email": "5.0.7",
|
|
"tailwindcss": "4.1.18",
|
|
"tsc-alias": "1.8.16",
|
|
"tsx": "4.21.0",
|
|
"typescript": "5.9.3",
|
|
"typescript-eslint": "8.49.0"
|
|
}
|
|
}
|