Files
AluxPay/package.json
2025-09-26 17:34:37 +02:00

20 lines
690 B
JSON

{
"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"
}
}