hrms-api-org/package.json

69 lines
1.9 KiB
JSON
Raw Permalink Normal View History

2024-01-24 11:39:00 +07:00
{
"name": "template",
"version": "1.0.0",
"description": "",
"main": "src/app.js",
"scripts": {
"dev": "nodemon",
"check": "tsc --noEmit",
"start": "node ./dist/app.js",
"format": "prettier --write .",
"build": "tsoa spec-and-routes && tsc",
"migration:generate": "typeorm-ts-node-commonjs migration:generate -d src/database/data-source.ts",
2026-02-09 17:45:50 +07:00
"migration:run": "typeorm-ts-node-commonjs migration:run -d src/database/data-source.ts",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage"
2024-01-24 11:39:00 +07:00
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
2024-10-11 11:05:31 +07:00
"@types/amqplib": "^0.10.5",
2024-01-24 11:39:00 +07:00
"@types/cors": "^2.8.17",
"@types/express": "^4.17.21",
2026-02-09 17:45:50 +07:00
"@types/jest": "^29.5.11",
2024-01-24 11:39:00 +07:00
"@types/node": "^20.11.5",
2024-02-07 11:45:55 +07:00
"@types/node-cron": "^3.0.11",
2024-01-24 11:39:00 +07:00
"@types/swagger-ui-express": "^4.1.6",
2025-03-04 18:05:56 +07:00
"@types/ws": "^8.5.14",
2026-02-09 17:45:50 +07:00
"jest": "^29.7.0",
2024-01-24 11:39:00 +07:00
"nodemon": "^3.0.3",
"prettier": "^3.2.2",
2026-02-09 17:45:50 +07:00
"ts-jest": "^29.1.1",
2024-01-24 11:39:00 +07:00
"ts-node": "^10.9.2",
"typescript": "^5.3.3"
},
"dependencies": {
2024-08-09 10:17:39 +07:00
"@elastic/elasticsearch": "^8.14.0",
2024-06-06 11:15:26 +07:00
"@nestjs/platform-express": "^10.3.9",
2024-01-24 11:39:00 +07:00
"@tsoa/runtime": "^6.0.0",
2025-03-11 23:37:05 +07:00
"act": "^0.0.6",
2024-10-11 11:05:31 +07:00
"amqplib": "^0.10.4",
2024-12-18 10:59:57 +07:00
"axios": "^1.7.9",
2024-01-24 11:39:00 +07:00
"cors": "^2.8.5",
2024-07-26 14:44:33 +07:00
"csv-parser": "^3.0.0",
2024-01-24 11:39:00 +07:00
"dotenv": "^16.3.1",
2025-12-07 13:51:01 +07:00
"express": "^4.21.2",
2024-01-24 11:39:00 +07:00
"fast-jwt": "^3.3.2",
2025-12-07 13:51:01 +07:00
"fast-levenshtein": "^3.0.0",
"fuse.js": "^7.1.0",
"jsonwebtoken": "^9.0.2",
2024-07-25 16:20:48 +07:00
"moment": "^2.30.1",
2024-02-05 16:57:04 +07:00
"mysql2": "^3.9.1",
2024-02-07 11:45:55 +07:00
"node-cron": "^3.0.3",
2024-06-06 11:15:26 +07:00
"node-xlsx": "^0.24.0",
2024-01-24 11:39:00 +07:00
"promise.any": "^2.0.6",
2024-12-18 10:59:57 +07:00
"querystring": "^0.2.1",
2024-07-24 09:20:54 +07:00
"redis": "^3.1.2",
2024-01-24 11:39:00 +07:00
"reflect-metadata": "^0.2.1",
2025-03-31 16:59:14 +07:00
"socket.io": "^4.8.1",
2024-01-24 11:39:00 +07:00
"swagger-ui-express": "^5.0.0",
"tsoa": "^6.0.1",
"typeorm": "^0.3.19",
2024-06-06 11:15:26 +07:00
"typeorm-cli": "^1.0.7",
2025-03-04 18:05:56 +07:00
"ws": "^8.18.1",
2024-06-06 11:15:26 +07:00
"xlsx": "^0.20.2"
2024-01-24 11:39:00 +07:00
}
}