chore: pin all dependency versions for reproducible builds

Remove ^ prefix from all 33 dependencies across root, server, and
frontend package.json files. Lockfile regenerated and verified with
pnpm install --frozen-lockfile.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
Dorian
2026-03-13 06:21:16 +00:00
co-authored by Claude Opus 4.6
parent e2dc2bbd70
commit 55d0f84251
4 changed files with 670 additions and 286 deletions
+16 -16
View File
@@ -8,23 +8,23 @@
"preview": "vite preview" "preview": "vite preview"
}, },
"dependencies": { "dependencies": {
"kaplay": "^3001.0.19", "kaplay": "3001.0.19",
"kokoro-js": "^1.2.1", "kokoro-js": "1.2.1",
"nostr-tools": "^2.23.3", "nostr-tools": "2.23.3",
"vue": "^3.5.13", "vue": "3.5.13",
"vue-router": "^4.5.1" "vue-router": "4.5.1"
}, },
"devDependencies": { "devDependencies": {
"@tailwindcss/vite": "^4.2.1", "@tailwindcss/vite": "4.2.1",
"@testing-library/vue": "^8.1.0", "@testing-library/vue": "8.1.0",
"@vitejs/plugin-vue": "^5.2.3", "@vitejs/plugin-vue": "5.2.3",
"@vue/test-utils": "^2.4.6", "@vue/test-utils": "2.4.6",
"fake-indexeddb": "^6.2.5", "fake-indexeddb": "6.2.5",
"jsdom": "^28.1.0", "jsdom": "28.1.0",
"tailwindcss": "^4.2.1", "tailwindcss": "4.2.1",
"typescript": "^5.7.3", "typescript": "5.7.3",
"vite": "^7.3.1", "vite": "7.3.1",
"vite-plugin-pwa": "^1.2.0", "vite-plugin-pwa": "1.2.0",
"vue-tsc": "^2.2.8" "vue-tsc": "2.2.8"
} }
} }
+8 -8
View File
@@ -14,13 +14,13 @@
"test:e2e": "playwright test --config e2e/playwright.config.ts" "test:e2e": "playwright test --config e2e/playwright.config.ts"
}, },
"devDependencies": { "devDependencies": {
"@playwright/test": "^1.58.2", "@playwright/test": "1.58.2",
"@typescript-eslint/eslint-plugin": "^8.56.1", "@typescript-eslint/eslint-plugin": "8.56.1",
"@typescript-eslint/parser": "^8.56.1", "@typescript-eslint/parser": "8.56.1",
"concurrently": "^9.1.2", "concurrently": "9.1.2",
"eslint": "^10.0.3", "eslint": "10.0.3",
"eslint-plugin-security": "^4.0.0", "eslint-plugin-security": "4.0.0",
"typescript": "^5.7.3", "typescript": "5.7.3",
"vitest": "^3.1.1" "vitest": "3.1.1"
} }
} }
+631 -247
View File
File diff suppressed because it is too large Load Diff
+15 -15
View File
@@ -11,22 +11,22 @@
"migrate": "tsx src/db/migrate.ts" "migrate": "tsx src/db/migrate.ts"
}, },
"dependencies": { "dependencies": {
"@cashu/cashu-ts": "^3.5.0", "@cashu/cashu-ts": "3.5.0",
"@hono/node-server": "^1.14.1", "@hono/node-server": "1.14.1",
"better-sqlite3": "^11.9.1", "better-sqlite3": "11.9.1",
"chalk": "^5.6.2", "chalk": "5.6.2",
"dotenv": "^17.3.1", "dotenv": "17.3.1",
"drizzle-orm": "^0.40.1", "drizzle-orm": "0.40.1",
"hono": "^4.7.6", "hono": "4.7.6",
"nanoid": "^5.1.5", "nanoid": "5.1.5",
"nostr-tools": "^2.23.3", "nostr-tools": "2.23.3",
"zod": "^4.3.6" "zod": "4.3.6"
}, },
"devDependencies": { "devDependencies": {
"@types/better-sqlite3": "^7.6.13", "@types/better-sqlite3": "7.6.13",
"@types/node": "^22.13.14", "@types/node": "22.13.14",
"drizzle-kit": "^0.30.5", "drizzle-kit": "0.30.5",
"tsx": "^4.19.3", "tsx": "4.19.3",
"typescript": "^5.7.3" "typescript": "5.7.3"
} }
} }