-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 2.21 KB
/
Copy pathpackage.json
File metadata and controls
76 lines (76 loc) · 2.21 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
{
"name": "astraport-api",
"version": "0.1.0",
"description": "AstraPort API - NestJS backend scaffold",
"main": "dist/main.js",
"scripts": {
"start": "node dist/main.js",
"start:dev": "ts-node-dev --respawn --transpile-only src/main.ts",
"build": "tsc -p tsconfig.build.json",
"generate:docs": "node scripts/generate-docs.js",
"lint": "eslint --ext .ts src",
"test": "jest"
},
"keywords": [],
"author": "",
"license": "MIT",
"dependencies": {
"@aws-sdk/client-s3": "^3.1095.0",
"@aws-sdk/s3-request-presigner": "^3.1095.0",
"@azure/storage-blob": "^12.32.0",
"@nestjs/bull": "^10.2.3",
"@nestjs/cache-manager": "^3.1.3",
"@nestjs/common": "^10.0.0",
"@nestjs/core": "^10.0.0",
"@nestjs/jwt": "^10.2.0",
"@nestjs/passport": "^10.0.3",
"@nestjs/platform-express": "^10.0.0",
"@nestjs/schedule": "^6.1.3",
"@nestjs/swagger": "^7.4.2",
"@nestjs/typeorm": "^11.0.3",
"@sentry/node": "^8.55.2",
"@types/clamscan": "^2.4.1",
"@types/multer": "^2.2.0",
"@types/sharp": "^0.31.1",
"@types/uuid": "^10.0.0",
"bcrypt": "^5.1.1",
"bull": "^4.16.5",
"clamscan": "^2.4.0",
"cron": "^4.4.0",
"multer": "^2.2.0",
"passport": "^0.7.0",
"passport-headerapikey": "^1.2.2",
"passport-jwt": "^4.0.1",
"passport-local": "^1.0.0",
"pg": "^8.11.0",
"reflect-metadata": "^0.1.13",
"rxjs": "^7.8.0",
"sharp": "^0.35.3",
"stellar-sdk": "^8.2.0",
"typeorm": "^0.3.16",
"uuid": "^9.0.1",
"winston": "^3.19.0",
"winston-daily-rotate-file": "^5.0.0"
},
"devDependencies": {
"@nestjs/testing": "^10.4.22",
"@types/bcrypt": "^5.0.2",
"@types/jest": "^29.5.2",
"@types/passport": "^1.0.17",
"@types/passport-jwt": "^4.0.1",
"@types/passport-local": "^1.0.38",
"@types/supertest": "^6.0.3",
"@types/uuid": "^9.0.8",
"@types/winston": "^2.4.4",
"@typescript-eslint/eslint-plugin": "^6.5.1",
"@typescript-eslint/parser": "^6.5.1",
"class-transformer": "^0.5.1",
"class-validator": "^0.15.1",
"eslint": "^8.46.0",
"jest": "^29.6.1",
"supertest": "^6.3.4",
"ts-jest": "^29.1.0",
"ts-node-dev": "^2.0.0",
"typescript": "^5.1.6"
}
}