What A dummy payment provider for testing and potentially other relevant use cases like accepting cash payments. Also makes it possible to start server without notification/payment/fulfillment providers. Why When setting up a starter project it introduces unnecessary overhead to have to set up an account with a payment provider (e.g. Stripe). Adding a dummy provider will remove friction. How Extremely simple wrapper functionality.
15 lines
323 B
Plaintext
15 lines
323 B
Plaintext
{
|
|
"plugins": [
|
|
"@babel/plugin-proposal-optional-chaining",
|
|
"@babel/plugin-proposal-class-properties",
|
|
"@babel/plugin-transform-instanceof",
|
|
"@babel/plugin-transform-classes"
|
|
],
|
|
"presets": ["@babel/preset-env"],
|
|
"env": {
|
|
"test": {
|
|
"plugins": ["@babel/plugin-transform-runtime"]
|
|
}
|
|
}
|
|
}
|