bulk-questionnaire-upload/frontend/package.json
vee1e 165b249c3d feat: implement CI workflow, enhance file validation, and add test cases
- Introduced a CI workflow for automated testing of backend and frontend components.
- Added pytest configuration for backend tests and Vitest configuration for frontend tests.
- Enhanced file validation logic in the backend to improve error handling and reporting.
- Created comprehensive test cases for various validation scenarios, including edge cases and incorrect formats.
- Updated requirements to include necessary testing libraries and tools.
2025-08-26 00:22:54 +05:30

45 lines
1.3 KiB
JSON

{
"name": "mform-upload",
"version": "0.0.0",
"scripts": {
"ng": "ng",
"start": "ng serve",
"build": "ng build",
"watch": "ng build --watch --configuration development",
"serve:ssr:mform-upload": "node --no-deprecation dist/mform-upload/server/server.mjs",
"test": "vitest",
"test:run": "vitest run"
},
"private": true,
"dependencies": {
"@angular/animations": "^19.2.10",
"@angular/cdk": "^19.2.0",
"@angular/common": "^19.2.0",
"@angular/compiler": "^19.2.0",
"@angular/core": "^19.2.0",
"@angular/flex-layout": "^15.0.0-beta.42",
"@angular/forms": "^19.2.0",
"@angular/material": "^19.2.0",
"@angular/platform-browser": "^19.2.0",
"@angular/platform-browser-dynamic": "^19.2.0",
"@angular/platform-server": "^19.2.0",
"@angular/router": "^19.2.0",
"@angular/ssr": "^19.2.9",
"express": "^4.18.2",
"file-saver": "^2.0.5",
"rxjs": "~7.8.0",
"tslib": "^2.3.0",
"zone.js": "~0.15.0"
},
"devDependencies": {
"@angular-devkit/build-angular": "^19.2.9",
"@angular/cli": "^19.2.9",
"@angular/compiler-cli": "^19.2.0",
"@types/express": "^4.17.21",
"@types/node": "^24.0.3",
"typescript": "~5.7.2",
"vitest": "^2.0.0",
"jsdom": "^25.0.0",
"@types/jsdom": "^21.1.7"
}
}