package.json 893 B

1234567891011121314151617181920212223242526272829303132
  1. {
  2. "name": "@vendure/job-queue-plugin",
  3. "version": "1.2.0",
  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. "publishConfig": {
  20. "access": "public"
  21. },
  22. "devDependencies": {
  23. "@google-cloud/pubsub": "^2.8.0",
  24. "@types/redis": "^2.8.28",
  25. "@vendure/common": "^1.2.0",
  26. "@vendure/core": "^1.2.0",
  27. "bullmq": "^1.40.1",
  28. "redis": "^3.0.2",
  29. "rimraf": "^3.0.2",
  30. "typescript": "4.3.5"
  31. }
  32. }