Files
trainingstagebuch/frontend/package.json
Torsten Schulz (local) cbc5054f1f feat(i18n, CourtDrawingTool, MembersOverviewSection): enhance internationalization and UI components
- Added new i18n keys for improved translations in the CourtDrawingTool and MembersOverviewSection components.
- Updated CourtDrawingTool to utilize translation keys for various UI elements, enhancing user experience and accessibility.
- Enhanced MembersOverviewSection with translation support for search and filter functionalities, improving usability for non-German speakers.
- Introduced new scripts in package.json for i18n auditing and status checking, streamlining localization management.
2026-03-20 09:05:15 +01:00

57 lines
1.2 KiB
JSON

{
"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"
},
"dependencies": {
"axios": "^1.7.3",
"core-js": "^3.8.3",
"crypto-js": "^4.2.0",
"html2canvas": "^1.4.1",
"jspdf": "^4.0.0",
"jspdf-autotable": "^5.0.2",
"node-cron": "^4.2.1",
"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": {
"@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"
]
}