- ✅ Ticket 1.1: Estructura Clean Architecture en backend - ✅ Ticket 1.2: Schemas Zod compartidos - ✅ Ticket 1.3: Refactorización drugs.ts (1362 → 8 archivos modulares) - ✅ Ticket 1.4: Refactorización procedures.ts (3583 → 6 archivos modulares) - ✅ Ticket 1.5: Eliminación de duplicidades (~50 líneas) Cambios principales: - Creada estructura Clean Architecture en backend/src/ - Schemas Zod compartidos en backend/src/shared/schemas/ - Refactorización modular de drugs y procedures - Utilidades genéricas en src/utils/ (filter, validation) - Eliminados scripts obsoletos y documentación antigua - Corregidos errores: QueryClient, import test-error-handling - Build verificado y funcionando correctamente
51 lines
1.3 KiB
JSON
51 lines
1.3 KiB
JSON
{
|
|
"name": "happy-dom",
|
|
"version": "20.1.0",
|
|
"license": "MIT",
|
|
"homepage": "https://github.com/capricorn86/happy-dom",
|
|
"repository": "https://github.com/capricorn86/happy-dom",
|
|
"author": "David Ortner",
|
|
"description": "Happy DOM is a JavaScript implementation of a web browser without its graphical user interface. It includes many web standards from WHATWG DOM and HTML.",
|
|
"main": "lib/index.js",
|
|
"type": "module",
|
|
"keywords": [
|
|
"jsdom",
|
|
"dom",
|
|
"browser",
|
|
"custom",
|
|
"elements",
|
|
"web",
|
|
"components",
|
|
"html",
|
|
"whatwg",
|
|
"w3c"
|
|
],
|
|
"publishConfig": {
|
|
"access": "public"
|
|
},
|
|
"scripts": {
|
|
"compile": "tsc && npm run compile:build-version-file",
|
|
"compile:build-version-file": "node ./bin/build-version-file.cjs",
|
|
"watch": "tsc -w --preserveWatchOutput",
|
|
"test": "vitest run",
|
|
"test:ui": "vitest --ui",
|
|
"test:watch": "vitest",
|
|
"test:debug": "vitest run --inspect-brk --no-file-parallelism"
|
|
},
|
|
"dependencies": {
|
|
"whatwg-mimetype": "^3.0.0",
|
|
"ws": "^8.18.3",
|
|
"@types/ws": "^8.18.1",
|
|
"@types/whatwg-mimetype": "^3.0.2",
|
|
"@types/node": "^20.0.0"
|
|
},
|
|
"devDependencies": {
|
|
"@vitest/ui": "^3.2.3",
|
|
"@webref/css": "6.6.2",
|
|
"typescript": "^5.8.3",
|
|
"vitest": "^3.2.2"
|
|
},
|
|
"engines": {
|
|
"node": ">=20.0.0"
|
|
}
|
|
} |