mirror of
https://github.com/Memo-2023/mana-monorepo.git
synced 2026-05-15 01:01:09 +02:00
- Add dark/light theme toggle - Glass-morphic form card with backdrop blur - Centered logo with app name and subtitle - Custom styled inputs with icons and labels - Violet accent color matching Matrix branding - Entrance animations (fadeInUp, fadeInScale) - Shake animation on error - Success pulse animation on login - Mobile-optimized layout - Reduced motion support
27 lines
643 B
JSON
27 lines
643 B
JSON
{
|
|
"name": "@manacore/shared-nestjs-setup",
|
|
"version": "1.0.0",
|
|
"description": "Shared NestJS bootstrap utilities for ManaCore backends",
|
|
"main": "./src/index.ts",
|
|
"types": "./src/index.ts",
|
|
"exports": {
|
|
".": "./src/index.ts"
|
|
},
|
|
"scripts": {
|
|
"build": "tsc",
|
|
"type-check": "tsc --noEmit"
|
|
},
|
|
"dependencies": {
|
|
"@nestjs/common": "^10.0.0 || ^11.0.0",
|
|
"@nestjs/core": "^10.0.0 || ^11.0.0"
|
|
},
|
|
"devDependencies": {
|
|
"@manacore/shared-tsconfig": "workspace:*",
|
|
"@types/node": "^22.10.2",
|
|
"typescript": "^5.0.0"
|
|
},
|
|
"peerDependencies": {
|
|
"@nestjs/common": "^10.0.0 || ^11.0.0",
|
|
"@nestjs/core": "^10.0.0 || ^11.0.0"
|
|
}
|
|
}
|