Initial commit

This commit is contained in:
2025-09-26 17:34:37 +02:00
commit b96ccfd112
37 changed files with 23138 additions and 0 deletions

20
package.json Normal file
View File

@@ -0,0 +1,20 @@
{
"name": "payment-website",
"version": "1.0.0",
"description": "Standalone payment processing website with PayPal integration",
"main": "backend/server.js",
"scripts": {
"dev": "concurrently \"npm run server\" \"npm run client\"",
"server": "cd backend && npm run dev",
"client": "cd frontend && npm start",
"build": "cd frontend && npm run build",
"start": "cd backend && npm start",
"install-all": "npm install && cd backend && npm install && cd ../frontend && npm install"
},
"keywords": ["payment", "paypal", "woocommerce", "react", "express"],
"author": "Your Name",
"license": "MIT",
"devDependencies": {
"concurrently": "^8.2.2"
}
}