diff --git a/package.json b/package.json index 6c0b7a3..be62109 100644 --- a/package.json +++ b/package.json @@ -34,7 +34,6 @@ "@catppuccin/daisyui": "^2.1.1", "@iconify-json/heroicons": "^1.2.3", "@react-pdf/types": "^2.9.2", - "dotenv": "^17.2.3", "drizzle-kit": "0.31.8" } } diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 505b13d..15288df 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -69,9 +69,6 @@ importers: '@react-pdf/types': specifier: ^2.9.2 version: 2.9.2 - dotenv: - specifier: ^17.2.3 - version: 17.2.3 drizzle-kit: specifier: 0.31.8 version: 0.31.8 @@ -1725,10 +1722,6 @@ packages: domutils@3.2.2: resolution: {integrity: sha512-6kZKyUajlDuqlHKVX1w7gyslj9MPIXzIFiz/rGu35uC1wMi+kMhQwGhl4lt9unC9Vb9INnY9Z3/ZA3+FhASLaw==} - dotenv@17.2.3: - resolution: {integrity: sha512-JVUnt+DUIzu87TABbhPmNfVdBDt18BLOWjMUFJMSi/Qqg7NTYtabbvSNJGOJ7afbRuv9D/lngizHtP7QyLQ+9w==} - engines: {node: '>=12'} - drizzle-kit@0.31.8: resolution: {integrity: sha512-O9EC/miwdnRDY10qRxM8P3Pg8hXe3LyU4ZipReKOgTwn4OqANmftj8XJz1UPUAS6NMHf0E2htjsbQujUTkncCg==} hasBin: true @@ -2298,6 +2291,7 @@ packages: libsql@0.5.22: resolution: {integrity: sha512-NscWthMQt7fpU8lqd7LXMvT9pi+KhhmTHAJWUB/Lj6MWa0MKFv0F2V4C6WKKpjCVZl0VwcDz4nOI3CyaT1DDiA==} + cpu: [x64, arm64, wasm32, arm] os: [darwin, linux, win32] lightningcss-android-arm64@1.30.2: @@ -5386,8 +5380,6 @@ snapshots: domelementtype: 2.3.0 domhandler: 5.0.3 - dotenv@17.2.3: {} - drizzle-kit@0.31.8: dependencies: '@drizzle-team/brocli': 0.10.2 diff --git a/scripts/migrate.js b/scripts/migrate.js index df0e832..2c01c94 100644 --- a/scripts/migrate.js +++ b/scripts/migrate.js @@ -3,9 +3,6 @@ import { migrate } from "drizzle-orm/libsql/migrator"; import { createClient } from "@libsql/client"; import path from "path"; import fs from "fs"; -import * as dotenv from "dotenv"; - -dotenv.config(); async function runMigrate() { console.log("Running migrations...");