All checks were successful
Deploy tt-tagebuch / deploy (push) Successful in 45s
- Implemented `fill-de-extended-gaps.js` to fill missing billing/orders keys in de-extended from de. - Created `fill-i18n-deep.py` for deep translation of locale JSONs using deep-translator with fallback options. - Added `fill-i18n-locales.js` to translate locale JSONs and write overrides for untranslated keys. - Introduced `fix-en-leaks.py` to translate keys that still match the en-US merge, addressing English leaks. - Developed `patch-de-ch-swiss.js` to replace 'ß' with 'ss' in de-CH.json without deleting existing entries. - Created `patch-en-gb-au.js` to apply UK/AU spelling corrections in en-GB and en-AU locales. - Added shell scripts `run-fix-en-leaks.sh` and `run-i18n-deep-fill.sh` for sequential execution of translation tasks. - Implemented `update-i18n-todo-stats.js` to update statistics in the I18N_TODO.md file based on translation completeness.
32 lines
942 B
JSON
32 lines
942 B
JSON
{
|
|
"name": "trainingstagebuch",
|
|
"version": "1.1.0",
|
|
"main": "index.js",
|
|
"scripts": {
|
|
"dev": "concurrently \"cd backend && npm run dev\" \"cd frontend && npm run dev\"",
|
|
"dev:backend": "cd backend && npm run dev",
|
|
"dev:frontend": "cd frontend && npm run dev",
|
|
"audit:frontend-size": "bash ./scripts/audit_frontend_size.sh",
|
|
"audit:inline-todos": "bash ./scripts/audit_inline_todos.sh",
|
|
"test": "echo \"Error: no test specified\" && exit 1"
|
|
},
|
|
"keywords": [],
|
|
"author": "",
|
|
"license": "ISC",
|
|
"description": "",
|
|
"devDependencies": {
|
|
"@babel/cli": "^7.24.8",
|
|
"@babel/core": "^7.25.2",
|
|
"@babel/preset-env": "^7.25.3",
|
|
"concurrently": "^8.2.2",
|
|
"eslint": "^8.57.0",
|
|
"eslint-config-airbnb-base": "^15.0.0",
|
|
"eslint-plugin-import": "^2.29.1"
|
|
},
|
|
"dependencies": {
|
|
"@babel/eslint-parser": "^7.25.1",
|
|
"vue-eslint-parser": "^9.4.3",
|
|
"vue-multiselect": "^3.0.0"
|
|
}
|
|
}
|