initial commit

This commit is contained in:
equippedcoding-master
2025-09-17 09:37:06 -05:00
parent 86108ca47e
commit e2c98790b2
55389 changed files with 6206730 additions and 0 deletions

View File

@@ -0,0 +1,26 @@
{
"name": "stripe-subscription-with-fixed-price",
"version": "1.0.0",
"description": "A Stripe sample implementing cards for subscriptions with fixed prices.",
"main": "server.js",
"scripts": {
"server": "node server/node/server.js",
"reactClient": "cd client/react && npm start",
"startReact": "concurrently \"yarn reactClient\" \"yarn server\"",
"startVanillajs": "yarn server",
"start": "yarn server",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "stripe-demos",
"license": "ISC",
"dependencies": {
"autoprefixer": "^9.7.6",
"body-parser": "^1.19.0",
"concurrently": "4.1.2",
"cookie-parser": "^1.4.5",
"dotenv": "^8.0.0",
"express": "^4.17.1",
"postcss-cli": "^7.1.1",
"stripe": "^7.4.0"
}
}