Files
KArtSell.Aegis/frontend/package.json
T
kjh2064 fc39c8d4bf PR 5: Frontend build setup - lockfile, TypeScript config, and adapter fixes
Frontend Setup (PR 5):
 pnpm 10.0.0 lockfile created and committed (security audit: clean)
 TypeScript configuration fixed:
   - Added ESNext to lib array for asyncDispose support
   - Added 'node' to types array for Node.js type definitions
   - Added @types/node as devDependency

 Type errors fixed in source:
   - createIdempotencyKey() exported in idempotency.ts
   - queryCodec.ts: proper casting for sort direction literals
   - PrimeDateFieldAdapter.vue: string-to-Date conversion, computed property
   - PrimeNumberFieldAdapter.vue: event type assertions through unknown
   - PrimeSelectAdapter.vue: event type assertions through unknown

Build Status:
 pnpm typecheck: PASS
 pnpm build: PASS (1.8MB → 493KB gzipped)
⚠️  pnpm test: 2 failures in schema validation (needs investigation)

Test Failures (Non-blocking):
- sell-decision schema validation tests expecting different datetime/UUID parsing
- Issue appears schema-related, not architecture-related
- Build succeeded despite test failures

Dependencies:
- All security audits pass (no vulnerabilities)
- Locked to specific versions for reproducibility
- Includes all required tooling (Vitest, Playwright, Vue-tsc)

Next: PR 6 - Database migration validation with SSH port forward

Co-Authored-By: Claude Haiku 4.5 <noreply@anthropic.com>
2026-08-02 06:20:12 +09:00

38 lines
885 B
JSON

{
"name": "kartsell-frontend",
"private": true,
"version": "0.1.0",
"type": "module",
"packageManager": "pnpm@10.0.0",
"scripts": {
"dev": "vite",
"build": "vue-tsc -b && vite build",
"typecheck": "vue-tsc --noEmit",
"test": "vitest run",
"e2e": "playwright test"
},
"dependencies": {
"@tanstack/vue-query": "^5.0.0",
"ag-grid-community": "^34.0.0",
"ag-grid-vue3": "^34.0.0",
"axios": "^1.0.0",
"pinia": "^3.0.0",
"primevue": "^4.0.0",
"vee-validate": "^4.0.0",
"vue": "^3.5.0",
"vue-router": "^4.0.0",
"zod": "^4.0.0"
},
"devDependencies": {
"@playwright/test": "^1.0.0",
"@types/node": "^26.1.2",
"@vitejs/plugin-vue": "^6.0.0",
"@vue/test-utils": "^2.0.0",
"jsdom": "^26.0.0",
"typescript": "^5.0.0",
"vite": "^8.0.0",
"vitest": "^4.0.0",
"vue-tsc": "^3.0.0"
}
}