Add Stripe integration for payment processing

Install the stripe npm package to handle payment processing.

Replit-Commit-Author: Agent
Replit-Commit-Session-Id: aed2e46d-25bb-4b73-81a1-bb9e8437c261
Replit-Commit-Checkpoint-Type: full_checkpoint
Replit-Commit-Event-Id: b678ff61-2cbd-4034-8d73-689e8b7a3b2b
Replit-Commit-Screenshot-Url: https://storage.googleapis.com/screenshot-production-us-central1/3bdfff67-975a-46ad-9845-fbb6b4a4c4b5/aed2e46d-25bb-4b73-81a1-bb9e8437c261/FUs0R2K
Replit-Helium-Checkpoint-Created: true
This commit is contained in:
sirpiglr 2025-12-10 01:45:09 +00:00
parent 2430bf8470
commit 775b380a50
2 changed files with 22 additions and 0 deletions

21
package-lock.json generated
View file

@ -14,6 +14,7 @@
"express": "^5.2.1",
"express-session": "^1.18.2",
"pg": "^8.16.3",
"stripe": "^20.0.0",
"ws": "^8.18.3"
}
},
@ -1029,6 +1030,26 @@
"node": ">= 0.8"
}
},
"node_modules/stripe": {
"version": "20.0.0",
"resolved": "https://registry.npmjs.org/stripe/-/stripe-20.0.0.tgz",
"integrity": "sha512-EaZeWpbJOCcDytdjKSwdrL5BxzbDGNueiCfHjHXlPdBQvLqoxl6AAivC35SPzTmVXJb5duXQlXFGS45H0+e6Gg==",
"license": "MIT",
"dependencies": {
"qs": "^6.11.0"
},
"engines": {
"node": ">=16"
},
"peerDependencies": {
"@types/node": ">=16"
},
"peerDependenciesMeta": {
"@types/node": {
"optional": true
}
}
},
"node_modules/toidentifier": {
"version": "1.0.1",
"resolved": "https://registry.npmjs.org/toidentifier/-/toidentifier-1.0.1.tgz",

View file

@ -15,6 +15,7 @@
"express": "^5.2.1",
"express-session": "^1.18.2",
"pg": "^8.16.3",
"stripe": "^20.0.0",
"ws": "^8.18.3"
}
}