-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
122 lines (122 loc) · 3.68 KB
/
package.json
File metadata and controls
122 lines (122 loc) · 3.68 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
{
"name": "nestjs-api",
"version": "0.0.1",
"description": "",
"author": "",
"private": true,
"license": "UNLICENSED",
"scripts": {
"prebuild": "rimraf dist",
"build": "nest build",
"format": "prettier --write \"src/**/*.ts\"",
"start": "nest start",
"start:dev": "nest start --watch",
"start:debug": "nest start --debug --watch",
"start:prod": "node dist/src/main",
"start:repl": "nest start --entryFile repl",
"lint": "eslint \"{src,apps,libs,prisma}/**/*.ts\" --fix",
"prisma:generate": "npx prisma generate",
"prisma:migrate": "npx prisma migrate dev",
"prisma:create": "npx prisma migrate dev --create-only",
"prisma:studio": "npx prisma studio",
"prisma:seed": "yarn run build && npx prisma db seed",
"prisma:status": "npx prisma migrate status",
"changelog": "auto-changelog --template changelog-template.hbs -p -u --commit-limit false",
"changelog-debug": "auto-changelog --template changelog-template.hbs -p --template json --output changelog-data.json",
"prepare": "husky install"
},
"dependencies": {
"@aws-sdk/client-s3": "^3.478.0",
"@aws-sdk/client-ses": "^3.535.0",
"@aws-sdk/s3-request-presigner": "^3.478.0",
"@nestjs-modules/mailer": "^1.10.3",
"@nestjs/common": "^10.3.0",
"@nestjs/config": "^3.1.1",
"@nestjs/core": "^10.3.0",
"@nestjs/event-emitter": "^2.0.3",
"@nestjs/jwt": "^10.2.0",
"@nestjs/mapped-types": "^2.0.4",
"@nestjs/passport": "^10.0.3",
"@nestjs/platform-express": "^10.3.0",
"@nestjs/swagger": "^7.1.17",
"@nestjs/throttler": "^5.1.1",
"@prisma/client": "^5.7.1",
"axios": "^1.6.2",
"bcryptjs": "^2.4.3",
"camelize": "^1.0.1",
"class-transformer": "^0.5.1",
"class-validator": "^0.14.0",
"dotenv": "^16.3.1",
"express-basic-auth": "^1.2.1",
"handlebars": "^4.7.8",
"hbs": "^4.2.0",
"helmet": "^7.1.0",
"moment-timezone": "^0.5.43",
"morgan": "^1.10.0",
"multer": "^1.4.5-lts.1",
"node-rsa": "^1.1.1",
"nodemailer": "^6.9.7",
"passport": "^0.7.0",
"passport-jwt": "^4.0.1",
"reflect-metadata": "^0.2.1",
"request-ip": "^3.3.0",
"rimraf": "^5.0.5",
"rxjs": "^7.8.1",
"swagger-ui-express": "^5.0.0",
"ua-parser-js": "^1.0.37",
"winston": "^3.12.0"
},
"devDependencies": {
"@nestjs/cli": "^10.2.1",
"@nestjs/schematics": "^10.0.3",
"@types/bcryptjs": "^2.4.6",
"@types/dotenv": "^8.2.0",
"@types/express": "^4.17.21",
"@types/moment": "^2.13.0",
"@types/morgan": "^1.9.9",
"@types/multer": "^1.4.11",
"@types/node": "^20.10.5",
"@types/nodemailer": "^6.4.14",
"@types/passport-jwt": "^3.0.13",
"@types/winston": "^2.4.4",
"@typescript-eslint/eslint-plugin": "^6.15.0",
"@typescript-eslint/parser": "^6.15.0",
"auto-changelog": "^2.4.0",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.1",
"husky": "^8.0.3",
"prettier": "^3.1.1",
"prisma": "^5.7.1",
"source-map-support": "^0.5.21",
"ts-loader": "^9.5.1",
"ts-node": "^10.9.2",
"tsconfig-paths": "^4.2.0",
"typescript": "^5.3.3"
},
"resolutions": {
"wrap-ansi": "7.0.0",
"string-width": "4.2.0"
},
"prisma": {
"seed": "node dist/prisma/seeds/seed.js"
},
"auto-changelog": {
"commitLimit": false,
"unreleased": true,
"issueUrl": "https://gitlab.com/infobizzs/black-widow-tech/templates/nest-template/-/issues",
"replaceText": {
"[Ee][Nn][Hh]:": "",
"[Ff][Ii][Xx]:": "",
"[Cc][Hh][Gg]:": ""
},
"includeBranch": [
"development",
"main"
]
},
"volta": {
"node": "20.10.0",
"yarn": "1.22.19"
}
}