etf-trade-tracker/package.json
kris 8a68a8bf86 Initial commit: ETF Trade Tracker with multi-user authentication
Features:
- Multi-user authentication system with admin panel
- SQLite database with user isolation
- Trade entry, history, and portfolio tracking
- Gains/losses calculation with price updates
- Responsive design with sidebar navigation
- Session-based authentication with bcrypt password hashing
- Admin user management capabilities

Default admin credentials: admin/admin123

🤖 Generated with [Claude Code](https://claude.ai/code)

Co-Authored-By: Claude <noreply@anthropic.com>
2025-08-28 15:36:40 +00:00

23 lines
518 B
JSON

{
"name": "etf-trade-tracker",
"version": "1.0.0",
"description": "ETF Trade Tracker with SQLite storage",
"main": "server.js",
"scripts": {
"start": "node server.js",
"dev": "nodemon server.js"
},
"dependencies": {
"express": "^4.18.2",
"sqlite3": "^5.1.6",
"cors": "^2.8.5",
"express-session": "^1.17.3",
"bcrypt": "^5.1.1"
},
"devDependencies": {
"nodemon": "^3.0.1"
},
"keywords": ["etf", "trading", "portfolio", "sqlite"],
"author": "",
"license": "MIT"
}