-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
119 lines (119 loc) · 3.86 KB
/
package.json
File metadata and controls
119 lines (119 loc) · 3.86 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
{
"name": "local-mail-stack",
"version": "1.1.0",
"description": "Local Mail Server (SMTP + IMAP) for Development & Testing",
"author": "https://github.com/shahadathhs",
"private": true,
"license": "UNLICENSED",
"scripts": {
"dev": "nest start --watch",
"build": "npx nest build",
"start": "npx prisma generate && npx prisma migrate deploy && node dist/src/main",
"start:debug": "nest start --debug --watch",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"format": "prettier --ignore-path .prettierignore --check \"**/*.+(js|ts|json)\"",
"format:fix": "prettier --ignore-path .prettierignore --write \"**/*.+(js|ts|json)\"",
"ci:check": "pnpm format && pnpm lint && pnpm db:validate && pnpm build && pnpm start",
"ci:fix": "pnpm format:fix && pnpm lint:fix",
"prisma": "npx prisma",
"db:push": "npx prisma db push",
"db:pull": "npx prisma db pull",
"db:generate": "npx prisma generate",
"db:reset": "npx prisma migrate reset",
"db:migrate": "npx prisma migrate dev",
"db:deploy": "npx prisma migrate deploy",
"db:studio": "npx prisma studio",
"db:validate": "npx prisma validate",
"db:format": "npx prisma format",
"prepare": "husky",
"commit": "cz"
},
"dependencies": {
"@nestjs/bullmq": "^11.0.4",
"@nestjs/cache-manager": "^3.1.0",
"@nestjs/common": "^11.1.12",
"@nestjs/config": "^4.0.2",
"@nestjs/core": "^11.1.12",
"@nestjs/event-emitter": "^3.0.1",
"@nestjs/jwt": "^11.0.2",
"@nestjs/passport": "^11.0.5",
"@nestjs/platform-express": "^11.1.12",
"@nestjs/platform-socket.io": "^11.1.12",
"@nestjs/schedule": "^6.1.0",
"@nestjs/serve-static": "^5.0.4",
"@nestjs/websockets": "^11.1.12",
"@prisma/adapter-pg": "^7.3.0",
"@prisma/client": "^7.3.0",
"@prisma/client-runtime-utils": "^7.3.0",
"axios": "^1.13.2",
"bcrypt": "^6.0.0",
"body-parser": "^2.2.2",
"bullmq": "^5.67.1",
"class-transformer": "^0.5.1",
"class-validator": "^0.14.3",
"dotenv": "^17.2.3",
"hbs": "^4.2.0",
"he": "^1.2.0",
"imapflow": "^1.2.6",
"jsonwebtoken": "^9.0.3",
"luxon": "^3.7.2",
"mailparser": "^3.9.1",
"mime-types": "^3.0.2",
"multer": "^2.0.2",
"nodemailer": "^7.0.12",
"passport-jwt": "^4.0.1",
"pg": "^8.17.2",
"reflect-metadata": "^0.2.2",
"rxjs": "^7.8.2",
"smtp-server": "^3.18.0",
"socket.io": "^4.8.3",
"uuid": "^13.0.0",
"winston": "^3.19.0",
"winston-daily-rotate-file": "^5.0.0"
},
"devDependencies": {
"@commitlint/cli": "^20.3.1",
"@commitlint/config-conventional": "^20.3.1",
"@eslint/eslintrc": "^3.3.3",
"@eslint/js": "^9.39.2",
"@nestjs/cli": "^11.0.16",
"@nestjs/schematics": "^11.0.9",
"@nestjs/swagger": "^11.2.5",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@types/bcrypt": "^6.0.0",
"@types/body-parser": "^1.19.6",
"@types/express": "^5.0.6",
"@types/hbs": "^4.0.5",
"@types/he": "^1.2.3",
"@types/imapflow": "^1.0.189",
"@types/jsonwebtoken": "^9.0.10",
"@types/luxon": "^3.7.1",
"@types/mailparser": "^3.4.6",
"@types/mime-types": "^3.0.1",
"@types/multer": "^2.0.0",
"@types/node": "^22.19.7",
"@types/nodemailer": "^7.0.5",
"@types/passport-jwt": "^4.0.1",
"@types/pg": "^8.16.0",
"@types/smtp-server": "^3.5.12",
"commitizen": "^4.3.1",
"cz-git": "^1.12.0",
"eslint": "^9.39.2",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.5",
"globals": "^16.5.0",
"husky": "^9.1.7",
"lint-staged": "^16.2.7",
"prettier": "^3.8.1",
"prisma": "^7.3.0",
"semantic-release": "^25.0.2",
"source-map-support": "^0.5.21",
"ts-loader": "^9.5.4",
"ts-node": "^10.9.2",
"tsconfig-paths": "^4.2.0",
"typescript": "^5.9.3",
"typescript-eslint": "^8.53.1"
}
}