generated from Libertech-FR/template_nestjs
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
118 lines (118 loc) · 3.28 KB
/
package.json
File metadata and controls
118 lines (118 loc) · 3.28 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
{
"name": "@libertech-fr/mailrest",
"version": "0.0.14",
"description": "An email retrieval system with a REST API built with NestJS in NodeJS",
"contributors": [
{
"name": "Libertech",
"email": "contact@libertech.fr",
"url": "https://libertech.fr"
},
{
"name": "RICHARD-Quentin",
"email": "richard.quentin88@gmail.com",
"url": "https://github.com/RICHARD-Quentin"
},
{
"name": " tacxou",
"email": "12997062+tacxou@users.noreply.github.com",
"url": "https://github.com/tacxou"
}
],
"license": "MIT",
"scripts": {
"prebuild": "rimraf dist",
"build": "nest build",
"format": "prettier --write \"src/**/*.ts\" \"test/**/*.ts\"",
"start": "nest start",
"generate": "nest g resource",
"npm-check-updates": "npx npm-check-updates",
"start:dev": "nest start --watch",
"start:debug": "nest start --debug 0.0.0.0 --watch",
"start:prod": "node dist/main",
"console": "node dist/src/console"
},
"keywords": [
"nodejs",
"api",
"express",
"rest",
"email",
"rest-api",
"api-rest",
"nestjs"
],
"dependencies": {
"@nestjs-modules/ioredis": "^1.0.1",
"@nestjs-modules/mailer": "^1.9.1",
"@nestjs/axios": "^3.0.0",
"@nestjs/common": "^10.1.3",
"@nestjs/swagger": "^7.1.8",
"@nestjs/config": "^3.0.0",
"@nestjs/core": "^10.1.3",
"@nestjs/jwt": "^10.1.0",
"@nestjs/mapped-types": "^2.0.2",
"@nestjs/passport": "^10.0.0",
"@nestjs/platform-express": "^10.1.3",
"@nestjs/schedule": "^3.0.4",
"axios": "^1.5.0",
"class-transformer": "^0.5.1",
"class-validator": "^0.14.0",
"default-gateway": "^6.0.3",
"form-data": "^4.0.0",
"handlebars": "^4.7.8",
"imapflow": "^1.0.136",
"ioredis": "^5.3.2",
"lru-cache": "^10.0.1",
"mailparser": "^3.6.5",
"nest-access-control": "^3.0.0",
"nodemailer": "^6.9.6",
"passport": "^0.6.0",
"passport-jwt": "^4.0.1",
"radash": "^11.0.0",
"reflect-metadata": "^0.1.13",
"rxjs": "^7.8.1",
"yaml": "^2.3.1"
},
"devDependencies": {
"@babel/plugin-proposal-private-methods": "^7.18.6",
"@compodoc/compodoc": "^1.1.21",
"@nestjs/cli": "^10.1.12",
"@nestjs/schematics": "10.0.2",
"@nestjs/testing": "^10.1.3",
"@swc/cli": "^0.1.62",
"@swc/core": "^1.3.93",
"@types/default-gateway": "^3.0.1",
"@types/express": "^4.17.17",
"@types/form-data": "^2.5.0",
"@types/imapflow": "^1.0.13",
"@types/ioredis": "^4.28.10",
"@types/jest": "^29.5.3",
"@types/lru-cache": "^7.10.10",
"@types/mailparser": "^3.4.0",
"@types/multer": "^1.4.8",
"@types/node": "^18.18.0",
"@types/nodemailer": "^6.4.11",
"@types/passport-jwt": "^3.0.9",
"@typescript-eslint/eslint-plugin": "^6.4.0",
"@typescript-eslint/parser": "^6.4.0",
"eslint": "^8.47.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-prettier": "^5.0.0",
"prettier": "^3.0.2",
"rimraf": "^5.0.1",
"swagger-themes": "^1.2.30",
"ts-loader": "^9.4.4",
"ts-node": "^10.9.1",
"tsconfig-paths": "^4.2.0",
"types-package-json": "^2.0.39",
"typescript": "^5.1.6"
},
"peerDependencies": {
"express": "^4"
},
"resolutions": {
"wrap-ansi": "7.0.0",
"string-width": "4.1.0"
}
}