-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 2.61 KB
/
package.json
File metadata and controls
72 lines (72 loc) · 2.61 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
{
"name": "nexus-forge",
"version": "0.1.0",
"private": true,
"description": "NestJS CQRS starter kit with TypeORM, BullMQ, NATS, and JWT RBAC",
"license": "MIT",
"scripts": {
"build": "nest build api",
"start": "nest start api",
"start:dev": "nest start api --watch",
"start:debug": "nest start api --debug --watch",
"start:prod": "node dist/apps/api/main",
"test": "jest",
"test:watch": "jest --watch",
"test:e2e": "jest --config apps/api/test/jest-e2e.json",
"lint": "eslint \"{apps,libs,scripts}/**/*.ts\" --max-warnings=0",
"lint:fix": "eslint \"{apps,libs,scripts}/**/*.ts\" --fix",
"db:create": "bash scripts/create-db.sh",
"db:migration:create": "bash scripts/migration-create.sh",
"db:migration:generate": "bash scripts/migration-generate.sh",
"db:migration:run": "typeorm-ts-node-commonjs -d apps/api/src/infrastructure/database/typeorm.datasource.ts migration:run",
"db:migration:revert": "typeorm-ts-node-commonjs -d apps/api/src/infrastructure/database/typeorm.datasource.ts migration:revert",
"db:migration:show": "typeorm-ts-node-commonjs -d apps/api/src/infrastructure/database/typeorm.datasource.ts migration:show",
"db:seed": "ts-node -r tsconfig-paths/register scripts/seed.ts"
},
"dependencies": {
"@nestjs/bullmq": "^11.0.2",
"@nestjs/common": "^11.1.6",
"@nestjs/config": "^4.0.2",
"@nestjs/core": "^11.1.6",
"@nestjs/cqrs": "^11.0.1",
"@nestjs/jwt": "^11.0.1",
"@nestjs/microservices": "^11.1.6",
"@nestjs/passport": "^11.0.5",
"@nestjs/platform-express": "^11.1.6",
"@nestjs/swagger": "^11.2.0",
"@nestjs/terminus": "^11.1.1",
"@nestjs/throttler": "^6.5.0",
"@nestjs/typeorm": "^11.0.0",
"bullmq": "^5.56.1",
"class-transformer": "^0.5.1",
"class-validator": "^0.14.2",
"nats": "^2.29.3",
"passport": "^0.7.0",
"passport-jwt": "^4.0.1",
"pg": "^8.16.3",
"reflect-metadata": "^0.2.2",
"rxjs": "^7.8.2",
"typeorm": "^0.3.26"
},
"devDependencies": {
"@nestjs/cli": "^11.0.7",
"@nestjs/schematics": "^11.0.6",
"@nestjs/testing": "^11.1.6",
"@types/express": "^5.0.3",
"@types/jest": "^30.0.0",
"@types/node": "^24.5.2",
"@types/passport-jwt": "^4.0.1",
"@types/supertest": "^7.2.0",
"@typescript-eslint/eslint-plugin": "^8.44.1",
"@typescript-eslint/parser": "^8.44.1",
"eslint": "^9.36.0",
"eslint-config-prettier": "^10.1.8",
"jest": "^30.1.3",
"prettier": "^3.6.2",
"supertest": "^7.2.2",
"ts-jest": "^29.4.1",
"ts-node": "^10.9.2",
"tsconfig-paths": "^4.2.0",
"typescript": "^5.9.2"
}
}