-
-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
103 lines (103 loc) · 3.06 KB
/
package.json
File metadata and controls
103 lines (103 loc) · 3.06 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
{
"name": "@nbw/backend",
"version": "0.0.1",
"description": "",
"author": "",
"private": true,
"license": "UNLICENSED",
"type": "module",
"module": "src/main.ts",
"scripts": {
"build": "NODE_ENV=production bun run scripts/build.ts",
"format": "prettier --write \"src/**/*.ts\" \"test/**/*.ts\"",
"start": "bun run src/main.ts",
"start:dev": "bun --watch run src/main.ts",
"start:debug": "bun --watch run src/main.ts",
"start:prod": "node dist/main",
"lint": "eslint \"src/**/*.ts\" --fix",
"test": "bun test src/**/*.spec.ts",
"test:watch": "bun test src/**/*.spec.ts --watch",
"test:cov": "bun test src/**/*.spec.ts --coverage",
"test:debug": "bun --inspect-brk --runInBand",
"test:e2e": "bun test e2e/**/*.spec.ts"
},
"dependencies": {
"@aws-sdk/client-s3": "3.946.0",
"@aws-sdk/s3-request-presigner": "3.946.0",
"@encode42/nbs.js": "^5.0.2",
"@nbw/config": "workspace:*",
"@nbw/database": "workspace:*",
"@nbw/validation": "workspace:*",
"@nbw/song": "workspace:*",
"@nbw/sounds": "workspace:*",
"@nbw/thumbnail": "workspace:*",
"@nestjs-modules/mailer": "^2.0.2",
"@nestjs/common": "^11.1.9",
"@nestjs/config": "^4.0.2",
"@nestjs/core": "^11.1.9",
"@nestjs/jwt": "^11.0.2",
"@nestjs/mongoose": "^10.1.0",
"@nestjs/passport": "^11.0.5",
"@nestjs/platform-express": "^11.1.9",
"@nestjs/swagger": "^11.2.3",
"@nestjs/throttler": "^6.5.0",
"@types/uuid": "^11.0.0",
"axios": "^1.13.2",
"bcryptjs": "^3.0.3",
"class-transformer": "^0.5.1",
"esm": "^3.2.25",
"express": "^5.2.1",
"mongoose": "^9.0.1",
"nestjs-zod": "^5.0.1",
"multer": "2.1.1",
"nanoid": "^5.1.6",
"passport": "^0.7.0",
"passport-github": "^1.1.0",
"passport-google-oauth20": "^2.0.0",
"passport-jwt": "^4.0.1",
"passport-local": "^1.0.0",
"passport-magic-login": "^1.2.4",
"passport-oauth2": "^1.8.0",
"reflect-metadata": "^0.2.2",
"rxjs": "^7.8.2",
"uuid": "^13.0.0",
"zod": "^4.1.13",
"zod-validation-error": "^5.0.0"
},
"devDependencies": {
"@faker-js/faker": "^10.1.0",
"@nestjs/cli": "^11.0.14",
"@nestjs/schematics": "^11.0.9",
"@nestjs/testing": "^11.1.9",
"@types/bcryptjs": "^3.0.0",
"@types/bun": "^1.3.4",
"@types/express": "^5.0.6",
"@types/jest": "^30.0.0",
"@types/multer": "^2.0.0",
"@types/node": "^24.10.1",
"@types/passport": "^1.0.17",
"@types/passport-github": "^1.1.13",
"@types/passport-google-oauth20": "^2.0.17",
"@types/passport-jwt": "^4.0.1",
"@types/passport-local": "^1.0.38",
"@types/passport-oauth2": "^1.8.0",
"@types/supertest": "^6.0.3",
"jest": "^30.2.0",
"source-map-support": "^0.5.21",
"supertest": "^7.1.4",
"ts-jest": "^29.4.6",
"ts-loader": "^9.5.4",
"ts-node": "^10.9.2",
"tsc-watch": "^7.2.0",
"tsconfig-paths": "^4.2.0",
"typescript": "^5.9.3"
},
"trustedDependencies": [
"@nestjs/core"
],
"ts-node": {
"require": [
"tsconfig-paths/register"
]
}
}