-
-
Notifications
You must be signed in to change notification settings - Fork 77
/
Copy pathpackage.json
90 lines (90 loc) · 2.6 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
{
"name": "@viewtube/server",
"main": "dist/main",
"engines": {
"node": ">=20.11.0",
"pnpm": ">=9.1.3"
},
"scripts": {
"serve": "nest start -w",
"dev": "pnpm run serve",
"build": "cross-env NODE_ENV=production nest build",
"start": "cross-env NODE_ENV=production node ./dist/main.js",
"gen:swagger": "pnpm run build && cross-env GENERATE_SWAGGER=true node ./dist/main.js",
"gen:api": "pnpm run gen:swagger && openapi-typescript swagger-spec.json --output ../shared/src/api.schema.ts && rimraf swagger-spec.json"
},
"_moduleAliases": {
"server": "dist/server"
},
"dependencies": {
"@fastify/cookie": "9.3.1",
"@fastify/helmet": "11.1.1",
"@fastify/multipart": "8.3.0",
"@fastify/static": "7.0.4",
"@fastify/swagger": "8.14.0",
"@nestjs/bull": "10.1.1",
"@nestjs/cache-manager": "2.2.2",
"@nestjs/common": "10.3.10",
"@nestjs/config": "3.2.3",
"@nestjs/core": "10.3.10",
"@nestjs/jwt": "10.2.0",
"@nestjs/mongoose": "10.0.10",
"@nestjs/platform-fastify": "10.3.10",
"@nestjs/schedule": "4.1.0",
"@nestjs/swagger": "7.4.0",
"@viewtube/shared": "workspace:*",
"archiver": "7.0.1",
"axios": "1.7.2",
"bcryptjs": "2.4.3",
"bull": "4.15.1",
"cache-manager": "5.7.1",
"cache-manager-redis-yet": "5.1.2",
"class-transformer": "0.5.1",
"class-validator": "0.14.1",
"cookie-parser": "1.4.6",
"cron": "3.1.7",
"cron-time-generator": "2.0.3",
"dayjs": "1.11.11",
"destr": "2.0.3",
"fast-xml-parser": "4.4.0",
"fastify": "4.28.1",
"fetch-socks": "1.3.0",
"https-proxy-agent": "7.0.5",
"humanize-duration": "3.32.1",
"ioredis": "5.4.1",
"joi": "17.13.3",
"mini-svg-data-uri": "1.4.4",
"mongoose": "8.4.5",
"nest-winston": "1.10.0",
"reflect-metadata": "0.2.2",
"rxjs": "7.8.1",
"sharp": "0.33.4",
"svg-captcha": "1.4.0",
"undici": "6.19.2",
"web-push": "3.6.7",
"winston": "3.13.0",
"winston-daily-rotate-file": "5.0.0",
"youtubei.js": "10.1.0",
"ytpl": "2.3.0"
},
"devDependencies": {
"@nestjs/cli": "10.4.2",
"@nestjs/websockets": "10.3.10",
"@swc/cli": "0.4.0",
"@swc/core": "1.6.13",
"@types/archiver": "6.0.2",
"@types/bcryptjs": "2.4.6",
"@types/cookie-parser": "1.4.7",
"@types/humanize-duration": "3.27.4",
"@types/multer": "1.4.11",
"@types/node": "20.14.10",
"@types/web-push": "3.6.3",
"cross-env": "7.0.3",
"h3": "1.12.0",
"openapi-typescript": "7.0.2",
"redis": "4.6.15",
"rimraf": "5.0.8",
"socks": "2.8.3",
"typescript": "5.5.3"
}
}