first commit

This commit is contained in:
2026-01-10 04:57:43 +00:00
parent 16a76a2cd6
commit 232968de1e
131 changed files with 43262 additions and 0 deletions

44
package.json Normal file
View File

@@ -0,0 +1,44 @@
{
"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",
"ws": "^8.17.0"
},
"devDependencies": {
"@types/node": "^20.12.7",
"pino-pretty": "^11.0.0"
}
}