-
Notifications
You must be signed in to change notification settings - Fork 217
Expand file tree
/
Copy pathpackage.json
More file actions
127 lines (127 loc) · 3.69 KB
/
Copy pathpackage.json
File metadata and controls
127 lines (127 loc) · 3.69 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
114
115
116
117
118
119
120
121
122
123
124
125
126
127
{
"name": "tikka-backend",
"version": "0.1.0",
"description": "Tikka API layer — auth, metadata, indexer merge, notifications",
"private": true,
"license": "Apache-2.0",
"scripts": {
"build": "nest build",
"start": "nest start",
"start:dev": "nest start -watch",
"start:debug": "nest start --debug --watch",
"lint": "eslint \"{src,test}/**/*.ts\"",
"boundaries": "depcruise src --config .dependency-cruiser.js",
"test": "jest",
"test:integration": "jest --config ./test/jest-integration.json",
"test:e2e": "jest --config ./test/jest-e2e.json",
"generate:openapi": "ts-node scripts/generate-openapi.ts",
"validate:openapi": "pnpm run generate:openapi && nxp swagger-cli validate openapi.json",
"migrations:check": "ts-node scripts/check-migrations.ts",
"storage:cleanup-orphans": "ts-node scripts/cleanup-orphan-images.ts"
},
"dependencies": {
"@fastify/helmet": "^13.0.2",
"@fastify/multipart": "^10.1.0",
"@nestjs/bullmq": "^10.2.3",
"@nestjs/common": "^10.4.0",
"@nestjs/config": "^4.0.3",
"@nestjs/core": "^10.4.0",
"@nestjs/jwt": "^10.2.0",
"@nestjs/passport": "^11.0.5",
"@nestjs/platform-fastify": "^10.4.0",
"@nestjs/swagger": "^7.4.2",
"@nestjs/throttler": "^6.4.0",
"@nestjs/typeorm": "^11.0.0",
"@react-email/components": "^0.5.7",
"@sentry/nestjs": "^10.69.0",
"@sentry/node": "8.55.1",
"@sentry/profiling-node": "^10.55.0",
"@stellar/stellar-sdk": "^16.1.0",
"@supabase/supabase-js": "^2.45.0",
"bullmq": "^5.81.2",
"class-transformer": "^0.5.1",
"class-validator": "^0.15.1",
"csv-stringify": "^6.8.0",
"fastify": "^5.0.0",
"file-type": "22.0.1",
"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",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"reflect-metadata": "^0.2.0",
"rxjs": "^7.8.0",
"sharp": "0.35.3",
"typeorm": "^0.3.28",
"zod": "^4.4.3",
"@tikka/types": "workspace:*"
},
"jest": {
"moduleFileExtensions": [
"js",
"json",
"ts",
"tsx"
],
"rootDir": "src",
"testRegex": ".*\\.Spec\\.ts$",
"transform": {
"^\\.+\\.(t|j)sx?$": "ts-jest"
},
"testEnvironment": "node",
"collectCoverageFrom": [
"**/*.ts"
],
"coverageDirectory": "../coverage",
"coverageReporters": [
"lcov",
"text"
],
"coverageThreshold": {
"global": {
"statements": 60,
"branches": 40,
"functions": 50,
"lines": 60
}
},
"setupFiles": ["../test/jest-setup.ts"]
},
"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/react": "^18.3.1",
"@types/react-dom": "^18.3.1",
"@types/sharp": "0.32.0",
"@types/supertest": "^6.0.2",
"@typescript-eslint/eslint-plugin": "^8.62.0",
"@typescript-eslint/parser": "^8.65.0",
"dependency-cruiser": "^18.2.0",
"eslint": "^10.6.0",
"fast-check": "4.9.0",
"jest": "^29.7.0",
"supertest": "^7.0.0",
"testcontainers": "^10.14.0",
"ts-jest": "^29.2.0",
"ts-node": "^10.9.2",
"typescript": "^5.6.0"
},
"peerDependencies": {
"@sentry/nestjs": "8.55.1"
},
"engines": {
"node": "22",
"pnpm": "9.15.9"
},
"packageManager": "pnpm@9.15.9+sha512.68046141893c66fad01c079231128e9afb89ef87e2691d69e4d40eee228988295fd4682181bae55b58418c3a253bde65a505ec7c5f9403ece5cc3cd37dcf2531"
}