courseworx/backend/package.json
mmabdalla 5477297914 v2.0.2 - Complete Plugin Architecture System and Multi-Currency Implementation
Major Features Added:
- Complete Plugin Architecture System with financial plugin
- Multi-currency support with exchange rates
- Course type system (online, classroom, hybrid)
- Attendance tracking and QR code scanning
- Classroom sessions management
- Course sections and content management
- Professional video player with authentication
- Secure media serving system
- Shopping cart and checkout system
- Financial dashboard and earnings tracking
- Trainee progress tracking
- User notes and assignments system

Backend Infrastructure:
- Plugin loader and registry system
- Multi-currency database models
- Secure media middleware
- Course access middleware
- Financial plugin with payment processing
- Database migrations for new features
- API endpoints for all new functionality

Frontend Components:
- Course management interface
- Content creation and editing
- Section management with drag-and-drop
- Professional video player
- QR scanner for attendance
- Shopping cart and checkout flow
- Financial dashboard
- Plugin management interface
- Trainee details and progress views

This represents a major evolution of CourseWorx from a basic LMS to a comprehensive educational platform with plugin architecture.
2025-09-14 04:20:37 +03:00

34 lines
838 B
JSON

{
"name": "courseworx-backend",
"version": "1.0.0",
"description": "Backend API for CourseWorx application",
"main": "server.js",
"scripts": {
"start": "node server.js",
"dev": "nodemon server.js",
"setup-db": "node scripts/setup-database.js"
},
"dependencies": {
"bcryptjs": "^2.4.3",
"cors": "^2.8.5",
"csv-parser": "^3.2.0",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"express-validator": "^7.0.1",
"ffprobe-static": "^3.1.0",
"helmet": "^7.1.0",
"jsonwebtoken": "^9.0.2",
"moment": "^2.30.1",
"multer": "^1.4.5-lts.1",
"pg": "^8.11.3",
"pg-hstore": "^2.3.4",
"qrcode": "^1.5.4",
"react-qr-reader": "^3.0.0-beta-1",
"sequelize": "^6.35.1",
"stripe": "^18.5.0",
"uuid": "^11.1.0"
},
"devDependencies": {
"nodemon": "^3.0.2"
}
}