T01: update backend package.json

This commit is contained in:
2026-06-21 20:32:22 +00:00
parent bad4368042
commit 50d79f0fd1
+24 -19
View File
@@ -1,25 +1,30 @@
{
"name": "backend",
"version": "1.0.0",
"description": "",
"main": "index.js",
"name": "web-cad-backend",
"version": "0.0.1",
"description": "Backend for web-cad - Web-based 2D CAD for Event Seating Plans",
"main": "dist/index.js",
"type": "module",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
"dev": "nodemon src/index.ts",
"build": "tsc",
"start": "node dist/index.js",
"test": "vitest",
"lint": "eslint . --ext .ts"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"bcryptjs": "^3.0.3",
"cors": "^2.8.6",
"dxf-parser": "^1.1.2",
"express": "^5.2.1",
"jsonwebtoken": "^9.0.3",
"multer": "^2.1.1",
"passport": "^0.7.0",
"passport-jwt": "^4.0.1",
"passport-local": "^1.0.0",
"pg": "^8.21.0",
"sequelize": "^6.37.8"
"fastify": "^5.0.0",
"@fastify/cors": "^10.0.0",
"@fastify/rate-limit": "^9.0.0",
"@fastify/swagger": "^9.0.0",
"@fastify/swagger-ui": "^5.0.0"
},
"devDependencies": {
"@types/node": "^22.0.0",
"typescript": "^5.0.0",
"nodemon": "^3.0.0",
"vitest": "^2.0.0",
"@typescript-eslint/eslint-plugin": "^8.0.0",
"@typescript-eslint/parser": "^8.0.0",
"eslint": "^9.0.0"
}
}