forked from SubStream-Protocol/SubStream-Protocol-Backend
-
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.53 KB
/
package.json
File metadata and controls
113 lines (113 loc) · 3.53 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": "substream-backend",
"version": "1.0.0",
"description": "API for SubStream Protocol",
"main": "index.js",
"scripts": {
"start": "node index.js",
"start:ws": "nest start",
"start:ws:dev": "nest start --watch",
"start:ws:debug": "nest start --debug --watch",
"start:ws:prod": "node dist/main",
"dev": "nodemon index.js",
"worker": "node worker.js",
"worker:dev": "nodemon worker.js",
"soroban": "node worker.js --soroban",
"soroban:dev": "nodemon worker.js --soroban",
"soroban:health": "node worker.js --soroban --health",
"pii-scrub": "node workers/piiScrubbingWorker.js",
"pii-scrub:dry-run": "node workers/piiScrubbingWorker.js 3 --dry-run",
"test": "jest",
"test:soroban": "jest --testPathPattern=soroban",
"test:pii": "jest piiScrubbing.test.js",
"migrate": "node migrations/runMigrations.js",
"migrate:rollback": "knex migrate:rollback",
"migrate:make": "knex migrate:make",
"migrate:list": "knex migrate:list",
"migrate:up": "knex migrate:up",
"migrate:down": "knex migrate:down",
"health-check": "node migrations/healthChecker.js",
"swagger:generate": "GENERATE_SWAGGER=true node -e \"require('./src/utils/swaggerGenerator').generateSwagger()\"",
"docs": "npm run swagger:generate && echo 'Documentation available at http://localhost:3000/api/docs'"
},
"dependencies": {
"@apollo/server": "^4.10.0",
"@nestjs/common": "^11.1.19",
"@nestjs/config": "^4.0.4",
"@nestjs/core": "^11.1.19",
"@nestjs/jwt": "^11.0.2",
"@nestjs/platform-express": "^11.1.19",
"@nestjs/testing": "^11.1.19",
"@nestjs/websockets": "^11.1.19",
"@sendgrid/mail": "^8.1.0",
"@sentry/node": "^10.50.0",
"@stellar/stellar-sdk": "^15.0.1",
"@types/node": "^25.6.0",
"amqplib": "^1.0.3",
"apollo-datasource": "^3.3.2",
"apollo-server-express": "^3.13.0",
"archiver": "^6.0.1",
"aws-sdk": "^2.1500.0",
"axios": "^1.15.2",
"bcrypt": "^6.0.0",
"better-sqlite3": "^12.9.0",
"bull": "^4.12.2",
"bullmq": "^5.1.0",
"class-transformer": "^0.5.1",
"class-validator": "^0.15.1",
"cloudinary": "^2.0.0",
"cors": "^2.8.6",
"csv-writer": "^1.6.0",
"dataloader": "^2.2.2",
"date-fns": "^3.0.0",
"dotenv": "^17.4.2",
"ethers": "^6.8.1",
"express": "^5.2.1",
"express-rate-limit": "^7.1.0",
"fluent-ffmpeg": "^2.1.2",
"form-data": "^4.0.0",
"graphql": "^16.8.1",
"graphql-tag": "^2.12.6",
"helmet": "^7.1.0",
"ioredis": "^5.6.1",
"ip-range-check": "^0.2.0",
"ipfs-http-client": "^60.0.1",
"js-yaml": "^4.1.1",
"jsonwebtoken": "^9.0.2",
"knex": "^3.2.9",
"multer": "^2.1.1",
"node-forge": "^1.3.1",
"node-vault": "^0.10.5",
"pg": "^8.11.3",
"puppeteer": "^21.5.0",
"rate-limiter-flexible": "^4.0.0",
"redis": "^4.6.0",
"rxjs": "^7.8.2",
"socket.io": "^4.8.3",
"soroban-client": "^1.0.0",
"stellar-sdk": "^13.3.0",
"stripe": "^14.10.0",
"swagger-autogen": "^2.23.7",
"swagger-ui-express": "^5.0.1",
"uuid": "^14.0.0",
"web3.storage": "^4.5.4",
"winston": "^3.19.0",
"xlsx": "^0.18.5"
},
"engines": {
"node": ">=20.11.0"
},
"devDependencies": {
"@nestjs/cli": "^11.0.21",
"@types/bcrypt": "^6.0.0",
"@types/jest": "^29.5.0",
"@types/passport": "^1.0.17",
"@types/passport-jwt": "^4.0.1",
"jest": "^30.3.0",
"nodemon": "^3.0.2",
"socket.io-client": "^4.8.3",
"supertest": "^7.0.0",
"ts-node": "^10.9.2",
"tsconfig-paths": "^4.2.0"
}
}