-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.74 KB
/
Copy pathpackage.json
File metadata and controls
54 lines (54 loc) · 1.74 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
{
"name": "coopfin-api",
"version": "0.1.0",
"private": true,
"scripts": {
"build": "nest build",
"start": "node dist/main",
"start:dev": "nest start --watch",
"start:debug": "nest start --debug --watch",
"lint": "eslint \"{src,apps,libs,test}/**/*.ts\"",
"test": "jest",
"test:e2e": "jest --config ./test/jest-e2e.json",
"db:migrate": "prisma migrate dev",
"db:generate": "prisma generate",
"db:studio": "prisma studio"
},
"dependencies": {
"@nestjs/common": "^10.3.8",
"@nestjs/core": "^10.3.8",
"@nestjs/platform-express": "^10.3.8",
"@nestjs/config": "^3.2.2",
"@nestjs/jwt": "^10.2.0",
"@nestjs/passport": "^10.0.3",
"@nestjs/swagger": "^7.3.1",
"@nestjs/websockets": "^10.3.8",
"@nestjs/schedule": "^4.0.1",
"@prisma/client": "^5.15.0",
"@stellar/stellar-sdk": "^12.3.0",
"passport": "^0.7.0",
"passport-jwt": "^4.0.1",
"bcryptjs": "^2.4.3",
"class-validator": "^0.14.1",
"class-transformer": "^0.5.1",
"bullmq": "^5.8.2",
"ioredis": "^5.4.1",
"nodemailer": "^6.9.14",
"reflect-metadata": "^0.2.2",
"rxjs": "^7.8.1"
},
"devDependencies": {
"@nestjs/cli": "^10.3.2",
"@nestjs/testing": "^10.3.8",
"@types/bcryptjs": "^2.4.6",
"@types/jest": "^29.5.12",
"@types/node": "^20.14.0",
"@types/nodemailer": "^6.4.15",
"@types/passport-jwt":"^4.0.1",
"jest": "^29.7.0",
"prisma": "^5.15.0",
"ts-jest": "^29.1.5",
"ts-node": "^10.9.2",
"typescript": "^5.4.5"
}
}