-
Notifications
You must be signed in to change notification settings - Fork 26
/
Copy pathpackage.json
81 lines (81 loc) · 2.46 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
{
"name": "booking",
"description": "booking service",
"version": "1.0.0",
"main": "src/app.ts",
"author": "Meysam Hadeli",
"license": "MIT",
"scripts": {
"dev": "tsc && nodemon src/app.ts --watch",
"build": "tsc",
"format": "prettier --write \"**/*.{ts,js}\"",
"lint": "eslint \"{src,apps,libs,test}/**/*.ts\" --fix",
"generate:swagger": "tsoa routes && tsoa spec",
"typeorm": "npm run build && npx typeorm -d ./dist/booking/src/data/data-source.js",
"migration:generate": "npm run typeorm -- migration:generate",
"migration:run": "npm run typeorm -- migration:run",
"migration:revert": "npm run typeorm -- migration:revert",
"test": "jest"
},
"devDependencies": {
"@eslint/js": "^9.17.0",
"@faker-js/faker": "^9.3.0",
"@types/compression": "^1.7.5",
"@types/cors": "^2.8.17",
"@types/express": "^5.0.0",
"@types/jest": "^29.5.14",
"@types/morgan": "^1.9.9",
"@types/node": "^22.10.2",
"@types/passport": "^1.0.17",
"@types/passport-jwt": "^4.0.1",
"@types/supertest": "^6.0.2",
"@types/swagger-ui-express": "^4.1.7",
"@typescript-eslint/eslint-plugin": "^8.18.2",
"@typescript-eslint/parser": "^8.18.2",
"eslint": "^9.17.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"globals": "^15.14.0",
"jest": "^29.7.0",
"lint-staged": "^15.2.11",
"prettier": "^3.4.2",
"supertest": "^7.0.0",
"swagger-ui-express": "^5.0.1",
"ts-jest": "^29.2.5",
"ts-node": "^10.9.2",
"typescript": "^5.7.2",
"typescript-eslint": "^8.18.2"
},
"dependencies": {
"@opentelemetry/sdk-trace-node": "^1.30.0",
"@types/pg": "^8.11.10",
"amqplib": "^0.10.5",
"async-retry": "^1.3.3",
"axios": "^1.7.9",
"building-blocks": "file:../building-blocks",
"compression": "^1.7.5",
"cors": "^2.8.5",
"dotenv": "^16.4.7",
"express": "^4.21.2",
"express-rate-limit": "^7.5.0",
"helmet": "^8.0.0",
"http-problem-details": "^0.1.5",
"http-status-codes": "^2.3.0",
"jest-serial-runner": "^1.2.1",
"joi": "^17.13.3",
"moment": "^2.30.1",
"morgan": "^1.10.0",
"nodemon": "^3.1.9",
"passport": "^0.7.0",
"passport-jwt": "^4.0.1",
"pg": "^8.13.1",
"prom-client": "^15.1.3",
"reflect-metadata": "^0.2.2",
"testcontainers": "^10.16.0",
"ts-mapper": "^1.2.4",
"tsoa": "^6.6.0",
"tsyringe": "^4.8.0",
"typemoq": "^2.1.0",
"winston": "^3.17.0"
}
}