This repository was archived by the owner on Apr 21, 2025. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
82 lines (82 loc) · 2.36 KB
/
package.json
File metadata and controls
82 lines (82 loc) · 2.36 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
{
"name": "brainbox-backend",
"version": "1.8.1",
"description": "Backend for BrainBox",
"author": "lzaycoe (Lazy Code)",
"private": true,
"license": "GPL-3.0 license",
"scripts": {
"build": "nest build --webpack",
"format": "prettier --write \"src/**/*.ts\" \"test/**/*.ts\"",
"prepare": "husky",
"start": "nest start",
"start:dev": "nest start --watch",
"start:debug": "nest start --debug --watch",
"start:prod": "node dist/main",
"lint": "eslint \"{src,apps,libs,test}/**/*.ts\" --fix",
"lint-staged": "lint-staged",
"prisma:dev": "prisma migrate dev",
"prisma:generate": "prisma generate",
"prisma:studio": "prisma studio",
"update-deps": "ncu --filter !@types/node"
},
"dependencies": {
"@clerk/backend": "1.24.0",
"@nestjs/common": "11.0.9",
"@nestjs/config": "4.0.0",
"@nestjs/core": "11.0.9",
"@nestjs/jwt": "11.0.0",
"@nestjs/passport": "11.0.5",
"@nestjs/platform-express": "11.0.9",
"@nestjs/platform-socket.io": "11.0.11",
"@nestjs/swagger": "11.0.3",
"@nestjs/websockets": "11.0.11",
"@prisma/client": "6.3.1",
"@types/socket.io": "3.0.2",
"argon2": "0.41.1",
"class-transformer": "0.5.1",
"class-validator": "0.14.1",
"cookie-parser": "1.4.7",
"express": "4.21.2",
"morgan": "1.10.0",
"nodemailer": "6.10.0",
"passport": "0.7.0",
"passport-custom": "1.1.1",
"passport-jwt": "4.0.1",
"passport-local": "1.0.0",
"reflect-metadata": "0.2.2",
"rxjs": "7.8.1",
"socket.io": "4.8.1",
"svix": "1.60.0"
},
"devDependencies": {
"@commitlint/cli": "19.7.1",
"@commitlint/config-conventional": "19.7.1",
"@nestjs/cli": "11.0.2",
"@nestjs/schematics": "11.0.0",
"@trivago/prettier-plugin-sort-imports": "5.2.2",
"@types/cookie-parser": "1.4.8",
"@types/express": "5.0.0",
"@types/morgan": "1.9.9",
"@types/node": "20.17.0",
"@types/nodemailer": "^6.4.17",
"@types/passport-jwt": "4.0.1",
"@types/passport-local": "1.0.38",
"@typescript-eslint/eslint-plugin": "8.24.0",
"@typescript-eslint/parser": "8.24.0",
"eslint": "9.20.1",
"eslint-config-prettier": "10.0.1",
"eslint-plugin-prettier": "5.2.3",
"globals": "15.14.0",
"husky": "9.1.7",
"lint-staged": "15.4.3",
"npm-check-updates": "17.1.14",
"prettier": "3.5.0",
"prisma": "6.3.1",
"source-map-support": "0.5.21",
"ts-loader": "9.5.2",
"ts-node": "10.9.2",
"tsconfig-paths": "4.2.0",
"typescript": "5.7.3"
}
}