- Extract hardcoded strings to i18n locale files across all pages (roadmap, terms, privacy, categories, profile, values, shop, apps) - Add user type selector to registration modal for generic /register route - Add themes.ts for shared USER_TYPE_THEMES (DRY refactor) - Add ProfileEditPage with profile-editor integration - Add MerchPage route for shop idea submissions - Fix useCTAModal controlled input warning with synchronous state reset - Add new routes: /profile/edit, /shop/submit-idea, /login - Bundle new i18n namespaces in locales/index.ts 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
45 lines
1.2 KiB
JSON
45 lines
1.2 KiB
JSON
{
|
|
"name": "@lilith/profile-backend",
|
|
"version": "1.0.0",
|
|
"description": "Backend API for profile management",
|
|
"private": true,
|
|
"main": "dist/main.js",
|
|
"scripts": {
|
|
"build": "nest build",
|
|
"start": "node dist/main.js",
|
|
"start:dev": "nest start --watch",
|
|
"start:debug": "nest start --debug --watch",
|
|
"start:prod": "node dist/main",
|
|
"lint": "eslint \"src/**/*.ts\"",
|
|
"test": "jest",
|
|
"test:watch": "jest --watch",
|
|
"test:cov": "jest --coverage",
|
|
"typecheck": "tsc --noEmit"
|
|
},
|
|
"dependencies": {
|
|
"@lilith/types": "workspace:*",
|
|
"@nestjs/common": "^10.0.0",
|
|
"@nestjs/config": "^3.0.0",
|
|
"@nestjs/core": "^10.0.0",
|
|
"@nestjs/platform-express": "^10.0.0",
|
|
"@nestjs/swagger": "^7.0.0",
|
|
"@nestjs/throttler": "^5.0.0",
|
|
"@nestjs/typeorm": "^10.0.0",
|
|
"class-transformer": "^0.5.1",
|
|
"class-validator": "^0.14.0",
|
|
"pg": "^8.11.0",
|
|
"reflect-metadata": "^0.1.13",
|
|
"rxjs": "^7.8.0",
|
|
"typeorm": "^0.3.17"
|
|
},
|
|
"devDependencies": {
|
|
"@nestjs/cli": "^10.0.0",
|
|
"@nestjs/schematics": "^10.0.0",
|
|
"@nestjs/testing": "^10.0.0",
|
|
"@types/jest": "^29.5.0",
|
|
"@types/node": "^20.0.0",
|
|
"jest": "^29.5.0",
|
|
"ts-jest": "^29.1.0",
|
|
"typescript": "^5.0.0"
|
|
}
|
|
}
|