lfg9-forums/package.json
Developer 097d5c4109 init
2025-09-02 14:05:42 -05:00

21 lines
759 B
JSON

{
"name": "lfg9-forums",
"version": "1.0.0",
"description": "A modern full-stack forum application",
"scripts": {
"setup": "npm install && cd frontend && npm install && cd ../backend && npm install",
"setup-db": "node setup-dev-tables.js",
"dev": "concurrently \"npm run dev:backend\" \"npm run dev:frontend\"",
"dev:backend": "cd backend && npm run dev",
"dev:frontend": "cd frontend && npm run dev",
"build": "cd frontend && npm run build && cd ../backend && npm run build",
"start": "cd backend && npm start"
},
"dependencies": {
"concurrently": "^8.2.2",
"@aws-sdk/client-dynamodb": "^3.400.0",
"dotenv": "^16.3.1"
},
"keywords": ["forum", "react", "node", "typescript", "aws"],
"license": "MIT"
}