Some checks failed
CI/CD Pipeline / Backend - Lint & Test (push) Has been cancelled
CI/CD Pipeline / Frontend - Lint & Test (push) Has been cancelled
CI/CD Pipeline / Security Scan (push) Has been cancelled
CI/CD Pipeline / Build Backend (push) Has been cancelled
CI/CD Pipeline / Build Frontend (push) Has been cancelled
CI/CD Pipeline / Integration Tests (push) Has been cancelled
CI/CD Pipeline / Deploy to Staging (push) Has been cancelled
CI/CD Pipeline / Deploy to Production (push) Has been cancelled
CI/CD Pipeline / Performance Tests (push) Has been cancelled
CI/CD Pipeline / Dependency Updates (push) Has been cancelled
120 lines
4.9 KiB
JSON
120 lines
4.9 KiB
JSON
{
|
|
"name": "cim-processor-backend",
|
|
"version": "1.0.0",
|
|
"description": "Backend API for CIM Document Processor",
|
|
"main": "dist/index.js",
|
|
"scripts": {
|
|
"dev": "ts-node-dev --respawn --transpile-only --max-old-space-size=8192 --expose-gc src/index.ts",
|
|
"dev:testing": "NODE_ENV=testing ts-node-dev --respawn --transpile-only --max-old-space-size=8192 --expose-gc src/index.ts",
|
|
"build": "tsc --skipLibCheck && node src/scripts/prepare-dist.js && cp .puppeteerrc.cjs dist/ && cp serviceAccountKey-testing.json dist/",
|
|
"start": "node --max-old-space-size=8192 --expose-gc dist/index.js",
|
|
"test:gcs": "ts-node src/scripts/test-gcs-integration.ts",
|
|
"test:staging": "ts-node src/scripts/test-staging-environment.ts",
|
|
"test:environment": "NODE_ENV=testing npm run test:staging",
|
|
"setup:gcs": "ts-node src/scripts/setup-gcs-permissions.ts",
|
|
"lint": "eslint src --ext .ts",
|
|
"lint:fix": "eslint src --ext .ts --fix",
|
|
"db:migrate": "ts-node src/scripts/setup-database.ts",
|
|
"db:seed": "ts-node src/models/seed.ts",
|
|
"db:setup": "npm run db:migrate && node scripts/setup_supabase.js",
|
|
"db:setup-sharing": "ts-node src/scripts/setup-document-sharing.ts",
|
|
"db:setup-sharing-firebase": "ts-node src/scripts/setup-document-sharing-firebase.ts",
|
|
"deploy:firebase": "npm run build && firebase deploy --only functions",
|
|
"deploy:testing": "firebase use testing && npm run build && firebase deploy --only functions --config firebase-testing.json",
|
|
"deploy:production": "firebase use production && npm run build && firebase deploy --only functions",
|
|
"deploy:cloud-run": "npm run build && gcloud run deploy cim-processor-backend --source . --region us-central1 --platform managed --allow-unauthenticated",
|
|
"deploy:docker": "npm run build && docker build -t cim-processor-backend . && docker run -p 8080:8080 cim-processor-backend",
|
|
"docker:build": "docker build -t cim-processor-backend .",
|
|
"docker:push": "docker tag cim-processor-backend gcr.io/cim-summarizer/cim-processor-backend:latest && docker push gcr.io/cim-summarizer/cim-processor-backend:latest",
|
|
"emulator": "firebase emulators:start --only functions",
|
|
"emulator:ui": "firebase emulators:start --only functions --ui",
|
|
"test:email": "ts-node src/scripts/test-email-service.ts",
|
|
"test": "jest",
|
|
"test:watch": "jest --watch",
|
|
"test:coverage": "jest --coverage",
|
|
"test:unit": "jest --testPathPattern=unit",
|
|
"test:integration": "jest --testPathPattern=integration",
|
|
"test:api": "jest --testPathPattern=api",
|
|
"test:health": "jest --testPathPattern=health",
|
|
"test:circuit-breaker": "jest --testPathPattern=circuit-breaker",
|
|
"prepare": "echo 'Skipping husky install for deployment'",
|
|
"pre-commit": "lint-staged",
|
|
"format": "prettier --write \"src/**/*.{ts,js,json}\"",
|
|
"format:check": "prettier --check \"src/**/*.{ts,js,json}\"",
|
|
"type-check": "tsc --noEmit",
|
|
"quality-check": "npm run lint && npm run format:check && npm run type-check"
|
|
},
|
|
"lint-staged": {
|
|
"*.{ts,js}": [
|
|
"eslint --fix",
|
|
"prettier --write",
|
|
"git add"
|
|
],
|
|
"*.{json,md}": [
|
|
"prettier --write",
|
|
"git add"
|
|
]
|
|
},
|
|
"dependencies": {
|
|
"@anthropic-ai/sdk": "^0.57.0",
|
|
"@google-cloud/documentai": "^9.3.0",
|
|
"@google-cloud/storage": "^7.16.0",
|
|
"@supabase/supabase-js": "^2.53.0",
|
|
"@types/pdfkit": "^0.17.2",
|
|
"axios": "^1.11.0",
|
|
"bcryptjs": "^2.4.3",
|
|
"cors": "^2.8.5",
|
|
"dotenv": "^16.3.1",
|
|
"express": "^4.18.2",
|
|
"express-rate-limit": "^7.1.5",
|
|
"firebase-admin": "^13.4.0",
|
|
"firebase-functions": "^6.4.0",
|
|
"helmet": "^7.1.0",
|
|
"joi": "^17.11.0",
|
|
"jsonwebtoken": "^9.0.2",
|
|
"morgan": "^1.10.0",
|
|
"nodemailer": "^6.9.7",
|
|
"openai": "^5.10.2",
|
|
"pdf-parse": "^1.1.1",
|
|
"pdfkit": "^0.17.1",
|
|
"pg": "^8.11.3",
|
|
"puppeteer": "^21.11.0",
|
|
"uuid": "^11.1.0",
|
|
"winston": "^3.11.0",
|
|
"zod": "^3.25.76"
|
|
},
|
|
"devDependencies": {
|
|
"@types/bcryptjs": "^2.4.6",
|
|
"@types/cors": "^2.8.17",
|
|
"@types/express": "^4.17.21",
|
|
"@types/jest": "^29.5.8",
|
|
"@types/jsonwebtoken": "^9.0.5",
|
|
"@types/morgan": "^1.9.9",
|
|
"@types/node": "^20.9.0",
|
|
"@types/nodemailer": "^6.4.14",
|
|
"@types/pdf-parse": "^1.1.4",
|
|
"@types/pg": "^8.10.7",
|
|
"@types/prettier": "^3.0.0",
|
|
"@types/supertest": "^2.0.16",
|
|
"@types/swagger-jsdoc": "^6.0.4",
|
|
"@types/swagger-ui-express": "^4.1.6",
|
|
"@types/uuid": "^10.0.0",
|
|
"@typescript-eslint/eslint-plugin": "^6.10.0",
|
|
"@typescript-eslint/parser": "^6.10.0",
|
|
"eslint": "^8.53.0",
|
|
"husky": "^8.0.3",
|
|
"jest": "^29.7.0",
|
|
"jest-environment-node": "^29.7.0",
|
|
"jest-extended": "^4.0.2",
|
|
"jest-junit": "^16.0.0",
|
|
"lint-staged": "^15.2.0",
|
|
"prettier": "^3.1.0",
|
|
"supertest": "^6.3.3",
|
|
"swagger-jsdoc": "^6.2.8",
|
|
"swagger-ui-express": "^5.0.1",
|
|
"ts-jest": "^29.1.1",
|
|
"ts-node-dev": "^2.0.0",
|
|
"typescript": "^5.2.2"
|
|
}
|
|
}
|