first commit

This commit is contained in:
2026-05-23 14:14:50 +03:30
commit 2a22bab127
48 changed files with 7554 additions and 0 deletions

57
package.json Normal file
View File

@@ -0,0 +1,57 @@
{
"name": "ticketing-server",
"version": "1.0.0",
"description": "Ticketing System API (Express + Sequelize + TypeScript)",
"main": "index.ts",
"type": "commonjs",
"scripts": {
"dev": "nodemon index.ts",
"build": "tsc",
"start": "node index.ts",
"type-check": "tsc --noEmit",
"clean": "rm -rf dist"
},
"keywords": [
"express",
"sequelize",
"typescript",
"ticketing"
],
"author": "",
"license": "ISC",
"dependencies": {
"auto-bind": "^4.0.0",
"cookie-parser": "^1.4.7",
"cors": "^2.8.6",
"csurf": "^1.11.0",
"dayjs": "^1.11.20",
"dotenv": "^17.4.2",
"exceljs": "^4.4.0",
"express": "^5.2.1",
"express-rate-limit": "^8.5.2",
"helmet": "^8.1.0",
"hpp": "^0.2.3",
"http-errors": "^2.0.1",
"joi": "^18.2.1",
"jsonwebtoken": "^9.0.3",
"multer": "^2.1.1",
"pg": "^8.20.0",
"pg-hstore": "^2.3.4",
"sequelize": "^6.37.8",
"stimulsoft-reports-js": "^2026.2.3"
},
"devDependencies": {
"@types/cookie-parser": "^1.4.10",
"@types/cors": "^2.8.19",
"@types/csurf": "^1.11.5",
"@types/exceljs": "^0.5.3",
"@types/express": "^5.0.6",
"@types/hpp": "^0.2.7",
"@types/jsonwebtoken": "^9.0.10",
"@types/node": "^25.8.0",
"nodemon": "^3.1.14",
"ts-node": "^10.9.2",
"tsconfig-paths": "^4.2.0",
"typescript": "^6.0.3"
}
}