Files
miracles_in_motion/api/package.json
defiQUG 12764ceb86 chore: comprehensive project update with dependency modernization, contact information standardization, copyright updates, and build configuration improvements
- Updated dependencies to latest compatible versions including React, TypeScript, and Vite.
- Standardized contact information across all components (phone, email, address, EIN).
- Updated copyright year to 2025 and ensured consistent legal status messaging.
- Modernized Azure infrastructure with updated API versions and enhanced security practices.
- Optimized build configurations for TypeScript and Vite, ensuring production readiness.
- Cleaned up console logs and improved code quality with type safety and test coverage updates.
2025-10-05 19:41:51 -07:00

34 lines
810 B
JSON

{
"name": "miracles-in-motion-api",
"version": "1.0.0",
"description": "Azure Functions API for Miracles in Motion nonprofit platform",
"main": "dist/index.js",
"scripts": {
"build": "tsc",
"watch": "tsc -w",
"prestart": "npm run build",
"start": "func start",
"test": "jest"
},
"dependencies": {
"@azure/cosmos": "^4.1.1",
"@azure/keyvault-secrets": "^4.8.1",
"@azure/identity": "^4.5.0",
"@azure/functions": "^4.5.1",
"stripe": "^17.3.0",
"joi": "^17.13.3",
"uuid": "^11.0.3",
"cors": "^2.8.5"
},
"devDependencies": {
"@types/node": "^22.10.1",
"@types/uuid": "^10.0.0",
"@types/cors": "^2.8.17",
"typescript": "^5.6.3",
"jest": "^29.7.0",
"@types/jest": "^29.5.14"
},
"engines": {
"node": ">=22.0.0"
}
}