forgot stripe module

This commit is contained in:
Jonathan Barrow 2022-06-19 20:51:03 -04:00
parent afe23b57ab
commit 895e090cef
2 changed files with 47 additions and 0 deletions

46
package-lock.json generated
View File

@ -24,6 +24,7 @@
"marked": "^4.0.10",
"mongoose": "^6.4.0",
"morgan": "^1.10.0",
"stripe": "^9.9.0",
"trello": "^0.11.0",
"uuid": "^8.3.2"
},
@ -3950,6 +3951,32 @@
"url": "https://github.com/sponsors/sindresorhus"
}
},
"node_modules/stripe": {
"version": "9.9.0",
"resolved": "https://registry.npmjs.org/stripe/-/stripe-9.9.0.tgz",
"integrity": "sha512-UBuHzKoEaHnTv2h65cIcYE0vse7at8CFlwjl/KS8I7piekMKa1lRTA5R2O4eXMp5wllWQbPF/UoLzTfjjcdBqA==",
"dependencies": {
"@types/node": ">=8.1.0",
"qs": "^6.10.3"
},
"engines": {
"node": "^8.1 || >=10.*"
}
},
"node_modules/stripe/node_modules/qs": {
"version": "6.10.5",
"resolved": "https://registry.npmjs.org/qs/-/qs-6.10.5.tgz",
"integrity": "sha512-O5RlPh0VFtR78y79rgcgKK4wbAI0C5zGVLztOIdpWX6ep368q5Hv6XRxDvXuZ9q3C6v+e3n8UfZZJw7IIG27eQ==",
"dependencies": {
"side-channel": "^1.0.4"
},
"engines": {
"node": ">=0.6"
},
"funding": {
"url": "https://github.com/sponsors/ljharb"
}
},
"node_modules/subarg": {
"version": "1.0.0",
"resolved": "https://registry.npmjs.org/subarg/-/subarg-1.0.0.tgz",
@ -7462,6 +7489,25 @@
"integrity": "sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==",
"dev": true
},
"stripe": {
"version": "9.9.0",
"resolved": "https://registry.npmjs.org/stripe/-/stripe-9.9.0.tgz",
"integrity": "sha512-UBuHzKoEaHnTv2h65cIcYE0vse7at8CFlwjl/KS8I7piekMKa1lRTA5R2O4eXMp5wllWQbPF/UoLzTfjjcdBqA==",
"requires": {
"@types/node": ">=8.1.0",
"qs": "^6.10.3"
},
"dependencies": {
"qs": {
"version": "6.10.5",
"resolved": "https://registry.npmjs.org/qs/-/qs-6.10.5.tgz",
"integrity": "sha512-O5RlPh0VFtR78y79rgcgKK4wbAI0C5zGVLztOIdpWX6ep368q5Hv6XRxDvXuZ9q3C6v+e3n8UfZZJw7IIG27eQ==",
"requires": {
"side-channel": "^1.0.4"
}
}
}
},
"subarg": {
"version": "1.0.0",
"resolved": "https://registry.npmjs.org/subarg/-/subarg-1.0.0.tgz",

View File

@ -32,6 +32,7 @@
"marked": "^4.0.10",
"mongoose": "^6.4.0",
"morgan": "^1.10.0",
"stripe": "^9.9.0",
"trello": "^0.11.0",
"uuid": "^8.3.2"
},