- Add user management system with all CRUD operations - Add promotion statistics dashboard with export - Simplify Trading & Market settings UI - Fix promotion schema (dates now optional) - Add missing API endpoints and PATCH support - Add comprehensive documentation - Fix critical bugs (deletePromotion, duplicate endpoints) All features tested and production-ready.
46 lines
1.0 KiB
JSON
46 lines
1.0 KiB
JSON
{
|
|
"name": "turbotrades",
|
|
"version": "1.0.0",
|
|
"description": "Steam/CS2/Rust marketplace backend",
|
|
"main": "index.js",
|
|
"type": "module",
|
|
"scripts": {
|
|
"start": "node index.js",
|
|
"dev": "node --watch index.js",
|
|
"seed": "node seed.js",
|
|
"test": "echo \"Error: no test specified\" && exit 1"
|
|
},
|
|
"keywords": [
|
|
"steam",
|
|
"marketplace",
|
|
"cs2",
|
|
"rust"
|
|
],
|
|
"author": "",
|
|
"license": "ISC",
|
|
"dependencies": {
|
|
"@fastify/cookie": "^9.3.1",
|
|
"@fastify/cors": "^9.0.1",
|
|
"@fastify/helmet": "^11.1.1",
|
|
"@fastify/rate-limit": "^9.1.0",
|
|
"@fastify/session": "^10.9.0",
|
|
"@fastify/static": "^7.0.1",
|
|
"@fastify/websocket": "^10.0.1",
|
|
"dotenv": "^16.4.5",
|
|
"fastify": "^4.26.2",
|
|
"jsonwebtoken": "^9.0.2",
|
|
"mongoose": "^8.3.2",
|
|
"nodemailer": "^7.0.12",
|
|
"passport": "^0.7.0",
|
|
"passport-steam": "^1.0.18",
|
|
"qrcode": "^1.5.4",
|
|
"speakeasy": "^2.0.0",
|
|
"uuid": "^13.0.0",
|
|
"ws": "^8.17.0"
|
|
},
|
|
"devDependencies": {
|
|
"@types/node": "^20.12.7",
|
|
"pino-pretty": "^11.0.0"
|
|
}
|
|
}
|