All checks were successful
Deploy tt-tagebuch / deploy (push) Successful in 54s
- Changed file permissions from 644 to 755 for various files in the mobile-app and mobile-app_legacy_rn_expo directories, ensuring executable permissions where necessary. - Added a new SQL migration script to the backend to introduce missing columns for club billing and invoice settings in the clubs table, maintaining synchronization with the current Sequelize model.
67 lines
1.8 KiB
JSON
Executable File
67 lines
1.8 KiB
JSON
Executable File
{
|
|
"name": "frontend",
|
|
"version": "0.1.0",
|
|
"private": true,
|
|
"scripts": {
|
|
"dev": "vite",
|
|
"build": "vite build",
|
|
"serve": "vite preview",
|
|
"i18n:audit": "node scripts/audit-i18n.js",
|
|
"i18n:status": "node scripts/translation-status.js",
|
|
"i18n:fill": "node ../scripts/fill-i18n-locales.js --all --delay 500",
|
|
"i18n:fill:deep": "PYTHONUNBUFFERED=1 ../scripts/.venv-i18n/bin/python -u ../scripts/fill-i18n-deep.py --all --delay 0.2",
|
|
"i18n:fix-leaks": "PYTHONUNBUFFERED=1 ../scripts/.venv-i18n/bin/python -u ../scripts/fix-en-leaks.py",
|
|
"i18n:fix-leaks:all": "bash ../scripts/run-fix-en-leaks.sh",
|
|
"i18n:completeness": "node ../scripts/check-i18n-completeness.js",
|
|
"i18n:update-todo": "node ../scripts/update-i18n-todo-stats.js"
|
|
},
|
|
"dependencies": {
|
|
"axios": "^1.7.3",
|
|
"core-js": "^3.8.3",
|
|
"crypto-js": "^4.2.0",
|
|
"docx": "^9.7.1",
|
|
"html2canvas": "^1.4.1",
|
|
"jspdf": "^4.0.0",
|
|
"jspdf-autotable": "^5.0.2",
|
|
"jszip": "^3.10.1",
|
|
"node-cron": "^4.2.1",
|
|
"pdfjs-dist": "^5.6.205",
|
|
"socket.io-client": "^4.8.1",
|
|
"sortablejs": "^1.15.3",
|
|
"vue": "^3.2.13",
|
|
"vue-i18n": "^9.14.5",
|
|
"vue-multiselect": "^3.0.0",
|
|
"vue-router": "^4.4.0",
|
|
"vuex": "^4.1.0"
|
|
},
|
|
"devDependencies": {
|
|
"@vitalets/google-translate-api": "^9.2.1",
|
|
"@vitejs/plugin-vue": "^6.0.2",
|
|
"eslint": "^9.39.1",
|
|
"eslint-plugin-vue": "^9.0.0",
|
|
"sass": "^1.77.8",
|
|
"sass-loader": "^14.2.1",
|
|
"vite": "^7.2.4"
|
|
},
|
|
"eslintConfig": {
|
|
"root": true,
|
|
"env": {
|
|
"node": true
|
|
},
|
|
"extends": [
|
|
"plugin:vue/vue3-essential",
|
|
"eslint:recommended"
|
|
],
|
|
"parserOptions": {
|
|
"parser": "@babel/eslint-parser"
|
|
},
|
|
"rules": {}
|
|
},
|
|
"browserslist": [
|
|
"> 1%",
|
|
"last 2 versions",
|
|
"not dead",
|
|
"not ie 11"
|
|
]
|
|
}
|