{ "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 run dev", "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" } }