- Create @reviq/utils package with PBKDF2-SHA256 password hashing compatible with Cloudflare Workers (uses crypto.subtle) - Update api-server and CLI to use new utils package for consistent password hashing format across the codebase - Add pino logging to api-server for better request debugging - Make login request tokens cryptographically secure base58 strings instead of database IDs - Add migration to make login_requests.token non-nullable with unique constraint - Fix RPCLink URL construction for client-side API calls - Add db:codegen script to root package.json Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
35 lines
913 B
JSON
35 lines
913 B
JSON
{
|
|
"name": "publisher-dashboard",
|
|
"private": true,
|
|
"workspaces": [
|
|
"apps/*",
|
|
"packages/*",
|
|
"packages/testing/*"
|
|
],
|
|
"scripts": {
|
|
"dev": "turbo dev",
|
|
"build": "turbo build",
|
|
"build:watch:packages": "turbo watch build --filter=./packages/*",
|
|
"lint": "biome check && turbo run lint",
|
|
"lint:fix": "biome check --write --unsafe && turbo run lint -- --fix",
|
|
"typecheck": "turbo typecheck",
|
|
"clean": "turbo clean",
|
|
"db:codegen": "bun run --cwd packages/db-schema generate"
|
|
},
|
|
"devDependencies": {
|
|
"@biomejs/biome": "^2.3.11",
|
|
"@macalinao/biome-config": "^0.1.7",
|
|
"turbo": "^2.7.3",
|
|
"typescript": "^5.9.3"
|
|
},
|
|
"catalog": {
|
|
"@macalinao/eslint-config": "^7.0.3",
|
|
"@macalinao/tsconfig": "^3.2.5",
|
|
"@types/bun": "^1.2.14",
|
|
"eslint": "^9.39.2",
|
|
"tslib": "^2.8.1",
|
|
"typescript": "^5.7.2"
|
|
},
|
|
"packageManager": "bun@1.1.42"
|
|
}
|