Added the missing requires to the stripe package

refs https://github.com/TryGhost/Team/issues/1437

- This enables this package to declare the version of all its dependencies
- It avoids using a different `@tryghost/domain-events` version, which ends up creating a new underlying EventEmitter than the one used with the other packages in this monorepo.
- The long term fix to avoid to have multiple EventEmitters is to make domain-events an injected dependency, so that it's only a dependency of Ghost core.
This commit is contained in:
Thibaut Patel 2022-03-23 11:22:36 +01:00
parent 2cab543473
commit f9ed212431

View File

@ -27,8 +27,12 @@
},
"dependencies": {
"@tryghost/debug": "^0.1.4",
"@tryghost/domain-events": "^0.1.9",
"@tryghost/errors": "1.2.5",
"@tryghost/logging": "^2.0.5",
"@tryghost/member-events": "^0.4.1",
"leaky-bucket": "^2.2.0",
"lodash": "^4.17.21",
"stripe": "^8.174.0"
}
}