Modern ERP Reports Application with microservices architecture Tech Stack: - Backend: FastAPI + python-oracledb (Oracle DB integration) - Frontend: Vue.js 3 + PrimeVue + Vite - Telegram Bot: python-telegram-bot + SQLite - Infrastructure: Shared database pool, JWT authentication, SSH tunnel Features: - FastAPI backend with async Oracle connection pool - Vue.js 3 responsive frontend with PrimeVue components - Telegram bot alternative interface - Microservices architecture with shared components - Complete deployment support (Linux Docker + Windows IIS) - Comprehensive testing (Playwright E2E + pytest) Repository Structure: - reports-app/ - Main application (backend, frontend, telegram-bot) - shared/ - Shared components (database pool, auth, utils) - deployment/ - Deployment scripts (Linux & Windows) - docs/ - Project documentation - security/ - Security scanning and git hooks
57 lines
1.4 KiB
JSON
57 lines
1.4 KiB
JSON
{
|
|
"name": "roa-reports-frontend",
|
|
"version": "1.0.0",
|
|
"description": "ROA2WEB Reports Frontend - Vue.js 3 + PrimeVue",
|
|
"type": "module",
|
|
"scripts": {
|
|
"dev": "vite",
|
|
"build": "vite build",
|
|
"preview": "vite preview",
|
|
"serve": "vite preview --port 3000",
|
|
"lint": "eslint tests/ --ext .js --fix --ignore-path .gitignore",
|
|
"format": "prettier --write src/",
|
|
"test:e2e": "playwright test",
|
|
"test:e2e:headed": "playwright test --headed",
|
|
"test:e2e:debug": "playwright test --debug",
|
|
"test:e2e:report": "playwright show-report",
|
|
"test:e2e:ui": "playwright test --ui"
|
|
},
|
|
"dependencies": {
|
|
"axios": "^1.6.2",
|
|
"chart.js": "^4.5.0",
|
|
"date-fns": "^2.30.0",
|
|
"jspdf": "^3.0.1",
|
|
"jspdf-autotable": "^5.0.2",
|
|
"pinia": "^2.1.7",
|
|
"primeicons": "^6.0.1",
|
|
"primevue": "^3.46.0",
|
|
"qrcode.vue": "^3.6.0",
|
|
"vue": "^3.4.0",
|
|
"vue-chartjs": "^5.3.2",
|
|
"vue-router": "^4.2.5",
|
|
"xlsx": "^0.18.5"
|
|
},
|
|
"devDependencies": {
|
|
"@playwright/test": "^1.54.2",
|
|
"@vitejs/plugin-vue": "^4.5.2",
|
|
"eslint": "^8.56.0",
|
|
"eslint-plugin-vue": "^9.19.2",
|
|
"prettier": "^3.1.1",
|
|
"vite": "^5.0.8"
|
|
},
|
|
"engines": {
|
|
"node": ">=16.0.0",
|
|
"npm": ">=8.0.0"
|
|
},
|
|
"keywords": [
|
|
"vue",
|
|
"fastapi",
|
|
"primevue",
|
|
"reports",
|
|
"oracle",
|
|
"erp"
|
|
],
|
|
"author": "ROA2WEB Team",
|
|
"license": "MIT"
|
|
}
|