Files
publisher-dashboard/package.json
RevIQ bd9be3e441 Add comprehensive WebAuthn e2e/unit tests and virtual authenticator package
- Create @reviq/virtual-authenticator package with cryptographically valid
  WebAuthn credential generation for testing
- Add e2e tests for WebAuthn registration, authentication, passkey management
- Add unit tests for passkey-helpers and VirtualAuthenticator
- Add security tests for counter replay and tampered responses
- Configure test database environment in devenv.nix
- Add turbo.json test tasks and workspace configuration

Test results: 98 tests passing (54 virtual-authenticator, 25 e2e, 19 unit)

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2026-01-09 16:46:02 +08:00

34 lines
850 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"
},
"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"
}