Files
tmc-test-task/backend/package.json
2026-06-03 20:21:43 +03:00

30 lines
699 B
JSON

{
"name": "tmc-backend",
"type": "module",
"version": "1.0.0",
"scripts": {
"dev": "tsx watch src/index.ts",
"build": "tsc && tsc-alias",
"start": "node dist/index.js",
"lint": "eslint ."
},
"dependencies": {
"cors": "^2.8.5",
"express": "^4.19.2",
"swagger-jsdoc": "^6.2.8",
"swagger-ui-express": "^5.0.1"
},
"devDependencies": {
"@antfu/eslint-config": "^3.9.2",
"@types/cors": "^2.8.17",
"@types/express": "^4.17.21",
"@types/node": "^22.0.0",
"@types/swagger-jsdoc": "^6.0.4",
"@types/swagger-ui-express": "^4.1.6",
"eslint": "^9.0.0",
"tsc-alias": "^1.8.10",
"tsx": "^4.16.2",
"typescript": "^5.5.3"
}
}