Files
yourpart3/package.json
Torsten Schulz (local) 19ee6ba0a1 Add password reset localization and chat configuration
- Implemented German and English localization for password reset functionality.
- Added WebSocket URL resolution logic in chat services to support various environments and configurations.
- Created centralized chat configuration for event keys and payload mappings.
- Developed RoomsView component for admin chat room management, including create, edit, and delete functionalities.
2025-08-18 07:44:56 +02:00

23 lines
697 B
JSON

{
"name": "yourpart",
"version": "3.0.0-pre-alpha.0.1",
"scripts": {
"start": "npm-run-all --parallel build start:backend",
"build": "cd frontend && npm run build",
"start:backend": "cd backend && node server.js",
"dev": "concurrently \"npm run dev:backend\" \"npm run dev:frontend\"",
"dev:backend": "cd backend && nodemon server.js",
"dev:frontend": "cd frontend && npm run dev"
},
"devDependencies": {
"concurrently": "^7.0.0",
"nodemon": "^3.1.10",
"npm-run-all": "^4.1.5"
},
"dependencies": {
"cors": "^2.8.5",
"dompurify": "^3.2.6",
"sequelize-cli": "^6.6.2"
}
}