etsy-finance-tracker/server/package.json
dlawler489 9e1a098a70 Initial commit: Complete Etsy Business Tracker with Profit Analysis Dashboard
Features:
- React + TypeScript frontend with Tailwind CSS
- Node.js + Express backend with TypeScript
- Comprehensive order tracking and management
- Product catalog with inventory tracking
- Customer data management
- Expense tracking and categorization
- Advanced Profit Analysis Dashboard with:
  - Real-time profit metrics and KPI visualization
  - Detailed order-level profit breakdown
  - Product performance analysis
  - Enhanced time range filtering (monthly, quarterly, yearly)
  - Interactive expandable order analysis
  - Performance categorization and color coding
- CSV import functionality for Etsy statements
- PDF parsing capabilities
- Redux state management with persistence
- Responsive design with mobile support
- Australian date formatting and currency display
2026-04-20 09:44:54 +10:00

46 lines
No EOL
1.2 KiB
JSON

{
"name": "etsy-tracker-server",
"version": "1.0.0",
"description": "Backend API for Etsy Business Tracker",
"main": "dist/index.js",
"scripts": {
"dev": "tsx watch src/index.ts",
"build": "tsc",
"start": "node dist/index.js",
"test": "jest",
"test:watch": "jest --watch"
},
"keywords": ["etsy", "tracking", "api", "express", "mongodb"],
"author": "Your Name",
"license": "MIT",
"dependencies": {
"express": "^4.18.2",
"mongoose": "^8.0.1",
"cors": "^2.8.5",
"helmet": "^7.1.0",
"express-rate-limit": "^7.1.5",
"bcryptjs": "^2.4.3",
"jsonwebtoken": "^9.0.2",
"joi": "^17.11.0",
"dotenv": "^16.3.1",
"morgan": "^1.10.0",
"compression": "^1.7.4",
"express-validator": "^7.0.1"
},
"devDependencies": {
"@types/express": "^4.17.21",
"@types/cors": "^2.8.17",
"@types/bcryptjs": "^2.4.6",
"@types/jsonwebtoken": "^9.0.5",
"@types/morgan": "^1.9.9",
"@types/compression": "^1.7.5",
"@types/node": "^20.9.1",
"typescript": "^5.2.2",
"tsx": "^4.4.0",
"@types/jest": "^29.5.8",
"jest": "^29.7.0",
"supertest": "^6.3.3",
"@types/supertest": "^2.0.16",
"ts-jest": "^29.1.1"
}
}