-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
89 lines (89 loc) · 2.71 KB
/
Copy pathpackage.json
File metadata and controls
89 lines (89 loc) · 2.71 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
{
"name": "theblueprintcode-engine",
"version": "0.0.1",
"description": "",
"author": "",
"private": true,
"license": "MIT",
"scripts": {
"setup": "tsc -p tsconfig.setup.json && node .setup-dist/scripts/setup.js",
"build": "nest build",
"deploy": "nest deploy",
"format": "prettier --write \"src/**/*.ts\" \"test/**/*.ts\"",
"start": "nest start",
"start:dev": "nest start --watch",
"start:debug": "nest start --debug --watch",
"start:prod": "node dist/main",
"lint": "oxlint src/ test/",
"test": "vitest run",
"test:watch": "vitest",
"test:cov": "vitest run --coverage",
"test:debug": "vitest --inspect-brk --no-file-parallelism",
"test:e2e": "vitest run --config ./vitest.config.e2e.ts"
},
"dependencies": {
"@fastify/cookie": "^11.1.2",
"@fastify/static": "^10.1.3",
"@nestjs/bullmq": "^12.0.0",
"@nestjs/common": "^12.0.1",
"@nestjs/config": "^12.0.0",
"@nestjs/core": "^12.0.1",
"@nestjs/jwt": "^12.0.1",
"@nestjs/passport": "^12.0.0",
"@nestjs/platform-fastify": "^12.0.1",
"@nestjs/serve-static": "^12.0.0",
"@nestjs/swagger": "^12.0.1",
"@nestjs/throttler": "^6.5.0",
"bcryptjs": "^3.0.3",
"bullmq": "^6.3.2",
"class-transformer": "^0.5.1",
"class-validator": "^0.15.1",
"drizzle-orm": "^0.45.2",
"fastify": "^5.12.1",
"handlebars": "^4.7.9",
"joi": "^18.2.5",
"nodemailer": "^9.0.6",
"passport": "^0.7.0",
"passport-apple": "^2.0.2",
"passport-custom": "^1.2.1",
"passport-discord": "^0.1.4",
"passport-github2": "^0.1.12",
"passport-google-oauth20": "^2.0.0",
"passport-jwt": "^4.0.1",
"passport-microsoft": "^2.1.0",
"pg": "^8.23.0",
"reflect-metadata": "^0.2.2",
"rxjs": "^7.8.1",
"uuid": "^14.0.2"
},
"devDependencies": {
"@nestjs/cli": "^12.0.0",
"@nestjs/mau": "^0.2.6",
"@nestjs/schematics": "^12.0.0",
"@nestjs/testing": "^12.0.1",
"@types/bcryptjs": "^2.4.6",
"@types/express": "^5.0.0",
"@types/node": "^24.0.0",
"@types/nodemailer": "^8.0.1",
"@types/passport-apple": "^2.0.3",
"@types/passport-discord": "^0.1.15",
"@types/passport-github2": "^1.2.9",
"@types/passport-google-oauth20": "^2.0.17",
"@types/passport-jwt": "^4.0.1",
"@types/passport-microsoft": "^2.1.1",
"@types/pg": "^8.23.1",
"@types/supertest": "^7.2.1",
"@types/uuid": "^10.0.0",
"@vitest/coverage-v8": "^4.1.2",
"drizzle-kit": "^0.31.10",
"inquirer": "^14.2.0",
"oxlint": "^1.58.0",
"prettier": "^3.4.2",
"source-map-support": "^0.5.21",
"supertest": "^7.0.0",
"tsx": "^4.23.12",
"typescript": "^6.0.2",
"vite-tsconfig-paths": "^5.1.4",
"vitest": "^4.1.2"
}
}