-
Notifications
You must be signed in to change notification settings - Fork 135
Expand file tree
/
Copy pathpackage.json
More file actions
92 lines (92 loc) · 2.64 KB
/
Copy pathpackage.json
File metadata and controls
92 lines (92 loc) · 2.64 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
{
"name": "tikka-backend",
"version": "0.1.0",
"description": "Tikka API layer — auth, metadata, indexer merge, notifications",
"private": true,
"scripts": {
"build": "nest build",
"start": "nest start",
"start:dev": "nest start --watch",
"start:debug": "nest start --debug --watch",
"lint": "eslint \"{src,test}/**/*.ts\"",
"test": "jest",
"test:e2e": "jest --config ./test/jest-e2e.json",
"generate:openapi": "ts-node scripts/generate-openapi.ts",
"validate:openapi": "pnpm run generate:openapi && npx swagger-cli validate openapi.json",
"migrations:check": "ts-node scripts/check-migrations.ts"
},
"dependencies": {
"@fastify/helmet": "^13.0.2",
"@fastify/multipart": "^9.0.0",
"@nestjs/common": "^10.4.0",
"@nestjs/config": "^4.0.3",
"@nestjs/core": "^10.4.0",
"@nestjs/jwt": "^10.2.0",
"@nestjs/passport": "^10.0.3",
"@nestjs/platform-fastify": "^10.4.0",
"@nestjs/swagger": "^7.4.2",
"@nestjs/throttler": "^6.4.0",
"@nestjs/typeorm": "^11.0.0",
"@sentry/nestjs": "^10.55.0",
"@sentry/node": "8.55.1",
"@react-email/components": "^0.5.7",
"@sentry/profiling-node": "^10.55.0",
"@react-email/components": "^0.5.7",
"@stellar/stellar-sdk": "^14.4.0",
"@supabase/supabase-js": "^2.45.0",
"class-transformer": "^0.5.1",
"class-validator": "^0.15.1",
"csv-stringify": "^6.8.0",
"fastify": "^5.0.0",
"file-type": "16.5.4",
"firebase-admin": "^13.8.0",
"handlebars": "^4.7.9",
"ioredis": "^5.6.1",
"nestjs-pino": "^4.4.1",
"passport": "^0.7.0",
"passport-jwt": "^4.0.1",
"pg": "^8.18.0",
"pino": "^9.7.0",
"pino-pretty": "^13.1.2",
"prom-client": "^15.1.3",
"reflect-metadata": "^0.2.0",
"rxjs": "^7.8.0",
"sharp": "0.33.5",
"typeorm": "^0.3.28",
"zod": "^3.23.0"
},
"jest": {
"moduleFileExtensions": [
"js",
"json",
"ts"
],
"rootDir": "src",
"testRegex": ".*\\.spec\\.ts$",
"transform": {
"^.+\\.(t|j)s$": "ts-jest"
},
"testEnvironment": "node"
},
"devDependencies": {
"@nestjs/cli": "^11.0.16",
"@nestjs/testing": "^10.4.0",
"@types/jest": "^29.5.14",
"@types/node": "^22.0.0",
"@types/passport-jwt": "^4.0.1",
"@types/sharp": "0.31.1",
"@types/supertest": "^6.0.2",
"@typescript-eslint/eslint-plugin": "^8.62.0",
"@typescript-eslint/parser": "^8.62.0",
"eslint": "^10.6.0",
"fast-check": "3.22.0",
"jest": "^29.7.0",
"supertest": "^7.0.0",
"ts-jest": "^29.2.0",
"ts-node": "^10.9.2",
"typescript": "^5.6.0"
},
"peerDependencies": {
"@sentry/nestjs": "8.55.1"
}
}