Includes: - Odoo 19 framework (odoo/) - 27 custom EnCoach addons (new_project/custom_addons/) - encoach_core, encoach_api, encoach_lms_api, encoach_adaptive_api - encoach_exam, encoach_taxonomy, encoach_adaptive, encoach_assignment - encoach_ai, encoach_ai_grading, encoach_ai_generation, encoach_ai_media - encoach_courseware, encoach_communication, encoach_subscription - encoach_notification, encoach_approval, encoach_branding - encoach_classroom, encoach_registration, encoach_stats - encoach_faq, encoach_ticket, encoach_training, encoach_resources - encoach_adaptive_ai, encoach_sis - 21 OpenEduCat Enterprise modules (new_project/enterprise-19/) - 14 OpenEduCat Community modules (new_project/openeducat_erp-19.0/) - Configuration: odoo.conf, requirements.txt, scripts - 200+ REST API endpoints with JWT authentication - SRS and test documentation Made-with: Cursor
35 lines
1.1 KiB
JSON
35 lines
1.1 KiB
JSON
{
|
|
"name": "odoo-js-config",
|
|
"version": "1.0.0",
|
|
"description": "JS Config for better DX in javascript",
|
|
"scripts": {
|
|
"format-all": "eslint --fix '**/*.js'",
|
|
"lint-all": "eslint '**/*.js'",
|
|
"lint-web": "eslint '**/web/**/*.js'",
|
|
"format-staged": "lint-staged",
|
|
"lint-diff": "echo '{\"extends\": [\"plugin:diff/diff\"]}' | eslint --resolve-plugins-relative-to . -c /dev/stdin '**/*.js'",
|
|
"format-diff": "echo '{\"extends\": [\"plugin:diff/diff\"]}' | eslint --fix --resolve-plugins-relative-to . -c /dev/stdin '**/*.js'"
|
|
},
|
|
"devDependencies": {
|
|
"eslint": "^8.27.0",
|
|
"eslint-config-prettier": "^8.5.0",
|
|
"eslint-plugin-diff": "^2.0.1",
|
|
"eslint-plugin-prettier": "^4.2.1",
|
|
"lint-staged": "^13.0.3",
|
|
"prettier": "^2.7.1",
|
|
"@types/jquery": "^3.5.14",
|
|
"@types/luxon": "^3.1.0",
|
|
"@types/qunit": "^2.19.3",
|
|
"@odoo/o-spreadsheet": "alpha",
|
|
"@odoo/owl": "^2.0.1"
|
|
},
|
|
"lint-staged": {
|
|
"*.js": [
|
|
"eslint --fix"
|
|
]
|
|
},
|
|
"engines": {
|
|
"node": ">= 16.11.0"
|
|
}
|
|
}
|