-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
108 lines (108 loc) · 3.2 KB
/
Copy pathpackage.json
File metadata and controls
108 lines (108 loc) · 3.2 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
{
"name": "devkor.club-backend",
"scripts": {
"build": "nest build",
"start:dev": "cross-env NODE_ENV=local nest start --watch",
"start": "cross-env NODE_ENV=local nest start",
"prod": "node dist/main",
"check": "biome check ./src"
},
"files": [
"dist"
],
"dependencies": {
"@mikro-orm/core": "^6.4.16",
"@mikro-orm/migrations": "^6.4.16",
"@mikro-orm/nestjs": "^6.1.1",
"@mikro-orm/postgresql": "^6.4.16",
"@nestjs/cache-manager": "^3.0.1",
"@nestjs/common": "^11.1.3",
"@nestjs/config": "^4.0.2",
"@nestjs/core": "^11.1.3",
"@nestjs/jwt": "^10.2.0",
"@nestjs/passport": "^10.0.3",
"@nestjs/platform-express": "^11.1.3",
"@nestjs/schematics": "^10.1.1",
"@nestjs/swagger": "^11.2.0",
"@notionhq/client": "^4.0.0",
"@sapphire/snowflake": "^3.5.5",
"bcryptjs": "^2.4.3",
"cache-manager": "^7.0.1",
"class-transformer": "^0.5.1",
"class-validator": "^0.14.1",
"cookie-parser": "^1.4.4",
"coolsms-node-sdk": "^2.1.0",
"cors": "^2.8.5",
"dayjs": "^1.11.13",
"dotenv": "^8.1.0",
"express": "^4.17.1",
"helmet": "^3.23.3",
"joi": "^17.2.1",
"jsonwebtoken": "^8.5.1",
"method-override": "^3.0.0",
"morgan": "^1.9.1",
"multer": "^1.4.2",
"multer-s3": "^2.9.0",
"mysql2": "^1.7.0",
"nestjs-pino": "^4.1.0",
"node-cache": "^5.0.2",
"nodemailer": "^6.3.0",
"notion-to-md": "^3.1.9",
"passport": "^0.6.0",
"passport-jwt": "^4.0.0",
"passport-local": "^1.0.0",
"pg": "^8.12.0",
"pm2": "^4.5.0",
"prom-client": "^15.1.1",
"reflect-metadata": "^0.1.13",
"rxjs": "^7.5.4",
"swagger-jsdoc": "^3.4.0",
"swagger-ui-express": "^4.3.0",
"tweetnacl": "^1.0.3",
"typescript": "^5.8.3",
"ulid": "^2.3.0",
"winston": "^3.2.1",
"winston-daily-rotate-file": "^4.4.2",
"zod": "^4.0.10"
},
"devDependencies": {
"@biomejs/biome": "1.7.3",
"@mikro-orm/cli": "^6.4.16",
"@nestjs/cli": "^10.3.2",
"@nestjs/testing": "^10.3.8",
"@types/bcryptjs": "^2.4.2",
"@types/cookie-parser": "^1.4.2",
"@types/cors": "^2.8.6",
"@types/dotenv": "^6.1.1",
"@types/express": "^4.17.1",
"@types/helmet": "0.0.47",
"@types/jest": "^27.4.1",
"@types/joi": "^14.3.4",
"@types/jsonwebtoken": "^8.3.4",
"@types/method-override": "0.0.31",
"@types/morgan": "^1.7.37",
"@types/multer": "^1.3.10",
"@types/multer-s3": "^2.7.7",
"@types/nodemailer": "^6.2.1",
"@types/passport-jwt": "^3.0.6",
"@types/passport-local": "^1.0.34",
"@types/sanitize-html": "^1.20.2",
"@types/swagger-jsdoc": "^3.0.2",
"@types/swagger-ui-express": "^3.0.1",
"@typescript-eslint/eslint-plugin": "^5.30.7",
"@typescript-eslint/parser": "^5.30.7",
"child_process": "^1.0.2",
"cross-env": "^7.0.3",
"ts-jest": "^27.1.4",
"ts-node": "^10.9.2",
"tsc-alias": "^1.3.2",
"tsconfig-paths": "^3.9.0"
},
"moduleNameMapper": {
"@common/(.*)$": "<rootDir>/src/common/$1",
"@applications/(.*)$": "<rootDir>/src/applications/$1",
"@presentations/(.*)$": "<rootDir>/src/presentations/$1",
"@domains/(.*)$": "<rootDir>/src/domains/$1",
"@/(.*)$": "<rootDir>/src/$1"
}
}