-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
92 lines (92 loc) · 2.63 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
82
83
84
85
86
87
88
89
90
91
92
{
"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": {
"@nestjs/common": "^10.3.8",
"@nestjs/config": "^3.2.2",
"@nestjs/core": "^10.3.8",
"@nestjs/jwt": "^10.2.0",
"@nestjs/passport": "^10.0.3",
"@nestjs/platform-express": "^10.3.10",
"@nestjs/schematics": "^10.1.1",
"@nestjs/swagger": "^7.3.1",
"@nestjs/typeorm": "^10.0.2",
"bcryptjs": "^2.4.3",
"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",
"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",
"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",
"typeorm": "0.2.25",
"typeorm-naming-strategies": "^4.1.0",
"ulid": "^2.3.0",
"winston": "^3.2.1",
"winston-daily-rotate-file": "^4.4.2"
},
"devDependencies": {
"@biomejs/biome": "1.7.3",
"@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",
"typescript": "^4.6.3"
}
}