forked from PhasoraLabs/StellarGrantProtocol
-
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.01 KB
/
Copy pathpackage.json
File metadata and controls
72 lines (72 loc) · 2.01 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": "stellargrant-api",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "tsx watch src/index.ts",
"build": "tsc -p tsconfig.json",
"start": "node dist/index.js",
"test:e2e": "vitest run tests/e2e",
"test:integration": "vitest run tests/integration",
"test:coverage": "vitest run --coverage",
"typeorm:sync": "tsx src/scripts/sync-db.ts",
"migration:run": "tsx src/scripts/run-migrations.ts"
},
"dependencies": {
"@sendgrid/mail": "^8.1.6",
"@stellar/stellar-sdk": "^13.3.0",
"axios": "^1.16.1",
"cors": "^2.8.5",
"dotenv": "^16.4.7",
"express": "^4.21.2",
"express-rate-limit": "^7.0.0",
"rate-limit-redis": "^4.2.0",
"form-data": "^4.0.0",
"helmet": "^8.1.0",
"ioredis": "^5.3.2",
"json2csv": "^5.0.7",
"jsonwebtoken": "^9.0.0",
"morgan": "^1.10.0",
"multer": "^1.4.5-lts.1",
"passport": "^0.7.0",
"passport-github2": "^0.1.12",
"passport-twitter": "^0.1.5",
"pg": "^8.13.3",
"prom-client": "^14.0.0",
"reflect-metadata": "^0.2.2",
"socket.io": "^4.8.3",
"swagger-jsdoc": "^6.2.8",
"swagger-ui-express": "^4.6.3",
"typeorm": "^0.3.28",
"uuid": "^9.0.0",
"winston": "^3.11.0",
"zod": "^3.24.2"
},
"overrides": {
"passport": "^0.7.0",
"qs": "^6.15.2",
"xml2js": "^0.6.2"
},
"devDependencies": {
"@testcontainers/postgresql": "^12.0.1",
"@types/cors": "^2.8.17",
"@types/express": "^4.17.21",
"@types/express-rate-limit": "^5.1.3",
"@types/express-session": "^1.19.0",
"@types/jsonwebtoken": "^9.0.2",
"@types/multer": "^1.4.7",
"@types/node": "^22.13.10",
"@types/passport": "^1.0.17",
"@types/passport-github2": "^1.2.9",
"@types/passport-twitter": "^1.0.40",
"@types/supertest": "^6.0.3",
"@types/uuid": "^9.0.1",
"@types/winston": "^2.4.4",
"@vitest/coverage-v8": "^3.2.4",
"sql.js": "^1.14.1",
"supertest": "^7.1.0",
"tsx": "^4.19.3",
"typescript": "^5.8.2",
"vitest": "^3.0.8"
}
}