2026-05-24 21:54:58 +00:00
|
|
|
{
|
2026-06-21 20:32:22 +00:00
|
|
|
"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",
|
2026-05-24 21:54:58 +00:00
|
|
|
"scripts": {
|
2026-06-21 20:32:22 +00:00
|
|
|
"dev": "nodemon src/index.ts",
|
|
|
|
|
"build": "tsc",
|
|
|
|
|
"start": "node dist/index.js",
|
|
|
|
|
"test": "vitest",
|
|
|
|
|
"lint": "eslint . --ext .ts"
|
2026-05-24 21:54:58 +00:00
|
|
|
},
|
|
|
|
|
"dependencies": {
|
2026-06-21 20:32:22 +00:00
|
|
|
"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"
|
2026-05-24 21:54:58 +00:00
|
|
|
}
|
2026-05-25 17:11:11 +00:00
|
|
|
}
|