Frameworks
Backend
Languages
Styling
Database / ORM
Infrastructure
Package Manager
Test Framework
Linter
1# Project234---56## Critical Rules78- Do not modify configuration files without explicit approval9- Never commit secrets, API keys, or .env files10- Always run the linter before committing1112---1314## Architecture1516```17src/ # Source code18 index.ts # Entry point19 lib/ # Shared utilities20```2122---2324## Key Commands2526```bash27# Install dependencies28npm install2930# Development31npm run dev3233# Build34npm run build35```3637---3839## Build Checklist4041Before committing:42- [ ] No console.log statements left in production code43- [ ] No hardcoded secrets or API keys44- [ ] Changes are tested locally before pushing45