-
Notifications
You must be signed in to change notification settings - Fork 31
Expand file tree
/
Copy pathpackage.json
More file actions
124 lines (124 loc) · 4.15 KB
/
package.json
File metadata and controls
124 lines (124 loc) · 4.15 KB
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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
{
"name": "@o2s/api-harmonization",
"version": "1.10.0",
"description": "",
"author": "",
"private": true,
"license": "MIT",
"exports": {
".": "./src/index.ts",
"./blocks/*": "./src/blocks/*.ts",
"./modules/*": "./src/modules/*.ts"
},
"scripts": {
"dev": "cross-env NODE_ENV=development nest start --watch",
"debug": "nest start --debug --watch",
"build": "nest build",
"start": "node dist/main",
"lint": "tsc --noEmit && eslint \"{src,apps,libs,test}/**/*.ts\" --fix",
"format": "prettier --write \"src/**/*.ts\"",
"generate:component": "turbo gen api-component"
},
"dependencies": {
"@nestjs/axios": "^4.0.1",
"@nestjs/common": "^11.1.9",
"@nestjs/config": "^4.0.2",
"@nestjs/core": "^11.1.9",
"@nestjs/platform-express": "^11.1.9",
"@nestjs/terminus": "^11.0.0",
"@o2s/blocks.article": "*",
"@o2s/blocks.article-list": "*",
"@o2s/blocks.article-search": "*",
"@o2s/blocks.category": "*",
"@o2s/blocks.category-list": "*",
"@o2s/blocks.faq": "*",
"@o2s/blocks.featured-service-list": "*",
"@o2s/blocks.invoice-list": "*",
"@o2s/blocks.notification-details": "*",
"@o2s/blocks.notification-list": "*",
"@o2s/blocks.notification-summary": "*",
"@o2s/blocks.order-details": "*",
"@o2s/blocks.order-list": "*",
"@o2s/blocks.orders-summary": "*",
"@o2s/blocks.payments-history": "*",
"@o2s/blocks.payments-summary": "*",
"@o2s/blocks.quick-links": "*",
"@o2s/blocks.service-details": "*",
"@o2s/blocks.service-list": "*",
"@o2s/blocks.surveyjs-form": "*",
"@o2s/blocks.ticket-details": "*",
"@o2s/blocks.ticket-list": "*",
"@o2s/blocks.ticket-recent": "*",
"@o2s/blocks.user-account": "*",
"@o2s/configs.integrations": "*",
"@o2s/framework": "*",
"@o2s/integrations.mocked": "*",
"@o2s/modules.surveyjs": "*",
"@o2s/telemetry": "*",
"@o2s/utils.api-harmonization": "*",
"@o2s/utils.frontend": "*",
"@o2s/utils.logger": "*",
"compression": "^1.8.1",
"cookie": "^1.0.2",
"cookie-parser": "^1.4.7",
"dayjs": "^1.11.19",
"helmet": "^8.1.0",
"jsonwebtoken": "^9.0.2",
"jwt-decode": "^4.0.0",
"reflect-metadata": "^0.2.2",
"rxjs": "^7.8.2",
"string-template": "^1.0.0",
"winston": "^3.18.3",
"xmlbuilder2": "^4.0.0"
},
"devDependencies": {
"@nestjs/cli": "^11.0.10",
"@nestjs/schematics": "^11.0.9",
"@nestjs/testing": "^11.1.9",
"@o2s/eslint-config": "*",
"@o2s/prettier-config": "*",
"@o2s/typescript-config": "*",
"@trivago/prettier-plugin-sort-imports": "^5.2.2",
"@turbo/gen": "^2.6.1",
"@types/compression": "^1.8.1",
"@types/cookie-parser": "^1.4.10",
"@types/express": "^5.0.5",
"@types/jest": "^30.0.0",
"@types/jsonwebtoken": "^9.0.10",
"@types/node": "^24.10.1",
"@types/string-template": "^1.0.7",
"@types/supertest": "^6.0.3",
"@typescript-eslint/eslint-plugin": "^8.47.0",
"@typescript-eslint/parser": "^8.47.0",
"cross-env": "^10.1.0",
"eslint": "^9.39.1",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.4",
"jest": "^30.2.0",
"prettier": "^3.6.2",
"source-map-support": "^0.5.21",
"supertest": "^7.1.4",
"ts-jest": "^29.4.5",
"ts-loader": "^9.5.4",
"ts-node": "^10.9.2",
"tsconfig-paths": "^4.2.0",
"typescript": "^5.9.3"
},
"jest": {
"moduleFileExtensions": [
"js",
"json",
"ts"
],
"rootDir": "src",
"testRegex": ".*\\.spec\\.ts$",
"transform": {
"^.+\\.(t|j)s$": "ts-jest"
},
"collectCoverageFrom": [
"**/*.(t|j)s"
],
"coverageDirectory": "../coverage",
"testEnvironment": "node"
}
}