package.json 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. {
  2. "name": "@vendure/payments-plugin",
  3. "version": "2.0.0-next.28",
  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. "e2e": "cross-env PACKAGE=payments-plugin vitest --config ../../e2e-common/vitest.config.ts --run",
  15. "e2e:watch": "cross-env PACKAGE=payments-plugin vitest --config ../../e2e-common/vitest.config.ts",
  16. "lint": "eslint --fix .",
  17. "ci": "yarn build",
  18. "dev-server:mollie": "yarn build && DB=sqlite node -r ts-node/register e2e/mollie-dev-server.ts"
  19. },
  20. "homepage": "https://www.vendure.io/",
  21. "funding": "https://github.com/sponsors/michaelbromley",
  22. "publishConfig": {
  23. "access": "public"
  24. },
  25. "peerDependencies": {
  26. "@mollie/api-client": "3.x",
  27. "braintree": "3.x",
  28. "stripe": "8.x"
  29. },
  30. "devDependencies": {
  31. "@mollie/api-client": "^3.6.0",
  32. "@types/braintree": "^2.22.15",
  33. "@vendure/common": "^2.0.0-next.28",
  34. "@vendure/core": "^2.0.0-next.28",
  35. "@vendure/testing": "^2.0.0-next.28",
  36. "braintree": "^3.0.0",
  37. "nock": "^13.1.4",
  38. "rimraf": "^3.0.2",
  39. "stripe": "^8.197.0",
  40. "typescript": "4.9.5"
  41. }
  42. }