forked from StellarSplit/StellarSplit
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
113 lines (113 loc) · 3.41 KB
/
Copy pathpackage.json
File metadata and controls
113 lines (113 loc) · 3.41 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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
{
"name": "backend",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "nest start",
"start:dev": "nest start --watch",
"build": "tsc -p tsconfig.build.json",
"lint": "eslint .",
"dev": "ts-node src/main.ts",
"dev:watch": "nodemon --exec 'ts-node' src/main.ts",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"test:cov": "jest --coverage",
"typeorm": "typeorm-ts-node-commonjs",
"migration:generate": "npm run typeorm migration:generate -- -d src/database/data-source.ts",
"migration:run": "npm run typeorm migration:run -- -d src/database/data-source.ts",
"analytics:analyze": "ts-node scripts/explain-queries.ts"
},
"keywords": [],
"author": "",
"license": "ISC",
"type": "commonjs",
"dependencies": {
"@apla/clickhouse": "^1.6.4",
"@aws-sdk/client-s3": "^3.978.0",
"@aws-sdk/s3-request-presigner": "^3.978.0",
"@elastic/elasticsearch": "^9.3.3",
"@nestjs/bull": "^11.0.4",
"@nestjs/cache-manager": "^3.1.0",
"@nestjs/common": "^11.1.12",
"@nestjs/config": "^4.0.2",
"@nestjs/core": "^11.1.12",
"@nestjs/event-emitter": "^3.0.1",
"@nestjs/platform-express": "^11.1.12",
"@nestjs/platform-socket.io": "^11.1.12",
"@nestjs/platform-ws": "^11.1.12",
"@nestjs/schedule": "^6.1.0",
"@nestjs/swagger": "^11.2.5",
"@nestjs/throttler": "^6.5.0",
"@nestjs/typeorm": "^11.0.2",
"@nestjs/websockets": "^11.1.12",
"@stellar/stellar-sdk": "^14.4.3",
"@types/cache-manager": "^4.0.6",
"@types/handlebars": "^4.0.40",
"@types/jsonwebtoken": "^9.0.10",
"@types/nodemailer": "^7.0.5",
"aws-sdk": "^2.1693.0",
"axios": "^1.13.2",
"bull": "^4.16.5",
"cache-manager": "^7.2.8",
"cache-manager-redis-store": "^3.0.1",
"class-transformer": "^0.5.1",
"class-validator": "^0.14.3",
"csurf": "^1.11.0",
"csv-writer": "^1.6.0",
"decimal.js": "^10.6.0",
"exceljs": "^4.4.0",
"express-rate-limit": "^8.2.1",
"firebase-admin": "^13.6.1",
"handlebars": "^4.7.8",
"helmet": "^8.1.0",
"joi": "^18.2.3",
"jsonwebtoken": "^9.0.3",
"kafkajs": "^2.2.4",
"nodemailer": "^7.0.12",
"pdfkit": "^0.13.0",
"pg": "^8.17.2",
"pg-query-stream": "^4.0.0",
"reflect-metadata": "^0.2.2",
"rxjs": "^7.8.2",
"sharp": "^0.33.5",
"socket.io": "^4.8.3",
"tesseract.js": "^5.1.0",
"typeorm": "^0.3.30",
"ws": "^8.19.0",
"xlsx": "^0.18.5",
"xml2js": "^0.6.2",
"xss-clean": "^0.1.4"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@nestjs/testing": "^11.1.12",
"@types/csurf": "^1.11.5",
"@types/express": "^5.0.6",
"@types/express-rate-limit": "^5.1.3",
"@types/jest": "^29.5.14",
"@types/multer": "^1.4.13",
"@types/node": "^25.0.9",
"@types/pdfkit": "^0.17.5",
"@types/supertest": "^6.0.3",
"@types/uuid": "^10.0.0",
"@types/ws": "^8.18.1",
"@types/xml2js": "^0.4.14",
"@typescript-eslint/eslint-plugin": "^8.56.1",
"@typescript-eslint/parser": "^8.56.1",
"dotenv": "^17.2.3",
"eslint": "^10.0.2",
"globals": "^17.4.0",
"jest": "^29.7.0",
"nodemon": "^3.1.11",
"socket.io-client": "^4.8.3",
"sqlite3": "^5.1.7",
"supertest": "^7.2.2",
"ts-jest": "^29.4.9",
"ts-loader": "^9.5.4",
"ts-node": "^10.9.2",
"typescript": "^5.9.3",
"typescript-eslint": "^8.56.1"
}
}