-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·154 lines (154 loc) · 5.69 KB
/
package.json
File metadata and controls
executable file
·154 lines (154 loc) · 5.69 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
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
{
"name": "jdadzok_server",
"displayName": "JdadZok Server",
"version": "1.6.0",
"description": "This is backend for jdadzok social media application",
"author": "Dev Ninja Omega",
"private": true,
"license": "UNLICENSED",
"scripts": {
"nest:m": "npx nest g resource",
"start": "nest start",
"build": "npx prisma generate && nest build",
"dev": "npx prisma generate && npx prisma migrate deploy && nest start --watch",
"start:prod": "npx prisma generate && npx prisma migrate deploy && npm run db:seed && node dist/main",
"start:docker": "npx prisma generate && npx prisma migrate deploy && npm run db:seed && node dist/main",
"start:debug": "nest start --debug --watch",
"format": "prettier --ignore-path .gitignore --check \"**/*.+(js|ts|json)\"",
"lint": "eslint . --ext .ts,.js,.jsx,.tsx",
"ci:check": "npm run lint && npm run format && npm run build && npm run start:prod",
"lint:fix": "eslint . --ext .ts,.js,.jsx,.tsx --fix",
"format:fix": "prettier --ignore-path .gitignore --write \"**/*.+(js|ts|json)\"",
"ci:fix": "npm run lint:fix && npm run format:fix",
"prisma": "npx prisma",
"prisma:pull": "npx prisma db pull",
"prisma:push": "npx prisma db push",
"generate:enum": "tsx src/scripts/generate.enum.ts",
"prisma:generate": "npm run generate:enum && npx prisma generate",
"prisma:reset": "npx prisma migrate reset",
"prisma:migrate": "npx prisma migrate dev",
"prisma:studio": "npx prisma studio",
"prisma:validate": "npx prisma validate",
"prisma:format": "npx prisma format",
"prod": "bash ./scripts.sh",
"db:seed": "tsx prisma/seed.ts",
"seed:cap": "tsx src/scripts/seed-cap-requirements.ts",
"prepare": "husky",
"postinstall": "npx prisma generate"
},
"dependencies": {
"@anatine/zod-nestjs": "^2.0.12",
"@anatine/zod-openapi": "^2.2.8",
"@aws-sdk/client-s3": "^3.883.0",
"@dotenvx/dotenvx": "^1.49.0",
"@keyv/redis": "^5.1.1",
"@nestjs-modules/mailer": "^2.0.2",
"@nestjs/bull": "^11.0.4",
"@nestjs/bullmq": "^11.0.2",
"@nestjs/cache-manager": "^3.0.1",
"@nestjs/common": "^11.0.1",
"@nestjs/config": "^4.0.2",
"@nestjs/core": "^11.0.1",
"@nestjs/event-emitter": "^3.0.1",
"@nestjs/jwt": "^11.0.0",
"@nestjs/mapped-types": "*",
"@nestjs/passport": "^11.0.5",
"@nestjs/platform-express": "^11.0.1",
"@nestjs/platform-socket.io": "11.1.6",
"@nestjs/schedule": "^6.0.1",
"@nestjs/websockets": "11.1.6",
"@prisma/client": "^6.18.0",
"@socket.io/redis-adapter": "8.3.0",
"argon2": "^0.44.0",
"axios": "^1.13.0",
"bcrypt": "^6.0.0",
"body-parser": "^2.2.0",
"bull": "^4.16.5",
"bullmq": "^5.58.0",
"cache-manager": "^7.1.1",
"cacheable": "^1.10.4",
"class-transformer": "^0.5.1",
"class-validator": "^0.14.2",
"cloudinary": "^2.7.0",
"cookie": "^1.0.2",
"cookie-parser": "^1.4.7",
"cron": "^4.3.4",
"date-fns": "^4.1.0",
"dayjs": "^1.11.13",
"dev-unique-id": "^1.1.5",
"dotenv": "^17.2.2",
"express": "^5.1.0",
"firebase-admin": "^13.4.0",
"google-auth-library": "^9.15.1",
"idanalyzer2": "^1.0.2",
"ioredis": "^5.7.0",
"keyv": "^5.5.0",
"luxon": "^3.7.2",
"mime-types": "^3.0.1",
"multer": "^2.0.1",
"multer-s3": "^3.0.1",
"nodemailer": "^7.0.3",
"passport": "^0.7.0",
"passport-jwt": "^4.0.1",
"redis": "^4.7.0",
"reflect-metadata": "^0.2.2",
"rxjs": "^7.8.1",
"slugify": "^1.6.6",
"socket.io": "4.8.1",
"stripe": "^19.3.0",
"twilio": "^5.8.0",
"type-fest": "^4.41.0",
"uuid": "^11.1.0",
"winston": "^3.17.0",
"ws": "^8.18.3",
"xommits": "^0.0.4",
"yocto-spinner": "^1.0.0",
"zod": "^3.25.76"
},
"devDependencies": {
"@eslint/eslintrc": "^3.2.0",
"@eslint/js": "^9.18.0",
"@eslint/json": "^0.12.0",
"@eslint/markdown": "^6.5.0",
"@faker-js/faker": "^10.0.0",
"@nestjs/cli": "^11.0.0",
"@nestjs/schematics": "^11.0.0",
"@nestjs/swagger": "^11.2.0",
"@nestjs/testing": "^11.0.1",
"@swc/cli": "^0.6.0",
"@swc/core": "^1.10.7",
"@types/bcrypt": "^5.0.2",
"@types/body-parser": "^1.19.6",
"@types/bull": "^3.15.9",
"@types/cookie-parser": "^1.4.9",
"@types/express": "^5.0.0",
"@types/lodash": "^4.17.21",
"@types/mime-types": "^3.0.1",
"@types/multer": "^2.0.0",
"@types/multer-s3": "^3.0.3",
"@types/node": "^22.10.7",
"@types/nodemailer": "^6.4.17",
"@types/passport-jwt": "^4.0.1",
"@types/ws": "^8.18.1",
"@typescript-eslint/eslint-plugin": "^8.41.0",
"@typescript-eslint/parser": "^8.41.0",
"chalk": "^5.4.1",
"dotenv-expand": "^12.0.3",
"eslint": "^9.18.0",
"eslint-config-prettier": "^10.0.1",
"eslint-plugin-prettier": "^5.5.4",
"globals": "^16.0.0",
"husky": "^9.1.7",
"lint-staged": "^16.1.6",
"node-emoji": "^2.2.0",
"prettier": "^3.4.2",
"prisma": "^6.18.0",
"source-map-support": "^0.5.21",
"ts-loader": "^9.5.2",
"ts-node": "^10.9.2",
"tsconfig-paths": "^4.2.0",
"tsx": "^4.20.4",
"typescript": "^5.7.3",
"typescript-eslint": "^8.20.0"
}
}