- Delete old Vite+Svelte frontend - Initialize new SvelteKit project with TypeScript - Configure Tailwind CSS v4 + DaisyUI - Implement JWT authentication with auto-refresh - Create login page with form validation (Zod) - Add protected route guards - Update Docker configuration for single-stage build - Add E2E tests with Playwright (6/11 passing) - Fix Svelte 5 reactivity with $state() runes Known issues: - 5 E2E tests failing (timing/async issues) - Token refresh implementation needs debugging - Validation error display timing
28 lines
651 B
JSON
28 lines
651 B
JSON
{
|
|
"name": "class-validator",
|
|
"version": "0.14.3",
|
|
"description": "Decorator-based property validation for classes.",
|
|
"author": "TypeStack contributors",
|
|
"license": "MIT",
|
|
"sideEffects": false,
|
|
"main": "./cjs/index.js",
|
|
"module": "./esm5/index.js",
|
|
"es2015": "./esm2015/index.js",
|
|
"typings": "./types/index.d.ts",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/typestack/class-validator.git"
|
|
},
|
|
"tags": [
|
|
"validator",
|
|
"validation",
|
|
"decorators",
|
|
"typescript"
|
|
],
|
|
"dependencies": {
|
|
"@types/validator": "^13.15.3",
|
|
"libphonenumber-js": "^1.11.1",
|
|
"validator": "^13.15.20"
|
|
}
|
|
}
|