package.json 1.1 KB

123456789101112131415161718192021222324252627282930313233343536
  1. {
  2. "name": "cloud-functions",
  3. "description": "Firebase Cloud Functions",
  4. "dependencies": {
  5. "firebase-admin": "^11.11.0",
  6. "firebase-functions": "^4.4.1",
  7. "braintree": "^3.6.0",
  8. "@mux/mux-node": "^7.3.3",
  9. "stripe": "^8.0.1",
  10. "axios": "1.16.1",
  11. "razorpay": "^2.8.4",
  12. "qs": "^6.7.0",
  13. "@onesignal/node-onesignal": "^2.0.1-beta2",
  14. "@langchain/core": "^0.3.19",
  15. "@langchain/langgraph": "^0.2.23",
  16. "@langchain/openai": "^0.3.14",
  17. "@langchain/google-genai": "^0.0.8",
  18. "@langchain/anthropic": "^0.1.1"
  19. },
  20. "devDependencies": {
  21. "eslint": "^6.8.0",
  22. "eslint-plugin-promise": "^4.2.1"
  23. },
  24. "scripts": {
  25. "lint": "./node_modules/.bin/eslint --max-warnings=0 .",
  26. "serve": "firebase -P uitgaanskrant-1qhvtd emulators:start --only functions",
  27. "shell": "firebase -P uitgaanskrant-1qhvtd functions:shell",
  28. "start": "npm run shell",
  29. "logs": "firebase -P uitgaanskrant-1qhvtd functions:log",
  30. "compile": "cp ../../tsconfig.template.json ./tsconfig-compile.json && tsc --project tsconfig-compile.json"
  31. },
  32. "engines": {
  33. "node": "20"
  34. },
  35. "private": true
  36. }