- Created complete project structure (server/, admin/, docs/) - Initialized Node.js project with all required dependencies - Configured PostgreSQL database connection - Implemented basic Express server with security middleware - Added health check and API placeholder endpoints - Set up environment configuration with development flags - Verified all components working and endpoints responding 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
37 lines
811 B
JSON
37 lines
811 B
JSON
{
|
|
"name": "server",
|
|
"version": "1.0.0",
|
|
"description": "",
|
|
"main": "index.js",
|
|
"scripts": {
|
|
"dev": "nodemon index.js",
|
|
"start": "node index.js",
|
|
"db:migrate": "node migrations/migrate.js",
|
|
"db:seed": "node migrations/seed.js",
|
|
"test": "jest"
|
|
},
|
|
"keywords": [],
|
|
"author": "",
|
|
"license": "ISC",
|
|
"type": "commonjs",
|
|
"dependencies": {
|
|
"cors": "^2.8.5",
|
|
"dotenv": "^17.2.2",
|
|
"express": "^5.1.0",
|
|
"express-rate-limit": "^8.0.1",
|
|
"helmet": "^8.1.0",
|
|
"joi": "^18.0.1",
|
|
"morgan": "^1.10.1",
|
|
"node-cache": "^5.1.2",
|
|
"openai": "^5.18.1",
|
|
"pg": "^8.16.3",
|
|
"redis": "^5.8.2",
|
|
"sequelize": "^6.37.7",
|
|
"uuid": "^11.1.0"
|
|
},
|
|
"devDependencies": {
|
|
"concurrently": "^9.2.1",
|
|
"jest": "^30.1.3",
|
|
"nodemon": "^3.1.10"
|
|
}
|
|
}
|