package.json 1016 B

12345678910111213141516171819202122232425262728293031323334
  1. {
  2. "name": "@vendure/job-queue-plugin",
  3. "version": "2.0.0-next.8",
  4. "license": "MIT",
  5. "main": "package/index.js",
  6. "types": "package/index.d.ts",
  7. "files": [
  8. "package/**/*"
  9. ],
  10. "private": false,
  11. "scripts": {
  12. "watch": "tsc -p ./tsconfig.build.json --watch",
  13. "build": "rimraf package && tsc -p ./tsconfig.build.json",
  14. "lint": "tslint --fix --project ./",
  15. "test": "jest --config ./jest.config.js",
  16. "e2e-wip": "node e2e/check-connection.js || jest --config ../../e2e-common/jest-config.js --runInBand --package=job-queue-plugin",
  17. "ci": "yarn build"
  18. },
  19. "homepage": "https://www.vendure.io/",
  20. "funding": "https://github.com/sponsors/michaelbromley",
  21. "publishConfig": {
  22. "access": "public"
  23. },
  24. "devDependencies": {
  25. "@google-cloud/pubsub": "^2.8.0",
  26. "@types/ioredis": "^4.28.8",
  27. "@vendure/common": "^2.0.0-next.8",
  28. "@vendure/core": "^2.0.0-next.8",
  29. "bullmq": "^1.74.3",
  30. "redis": "^3.0.2",
  31. "rimraf": "^3.0.2",
  32. "typescript": "4.5.5"
  33. }
  34. }