-
Notifications
You must be signed in to change notification settings - Fork 18
Expand file tree
/
Copy pathpackage.json
More file actions
122 lines (122 loc) · 4.59 KB
/
Copy pathpackage.json
File metadata and controls
122 lines (122 loc) · 4.59 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
{
"name": "back-end",
"version": "0.30.0-SNAPSHOT",
"description": "",
"author": "",
"private": true,
"scripts": {
"build": "nest build",
"build:all": "pnpm build:api && pnpm build:chain && pnpm build:notifications",
"build:api": "nest build api",
"build:chain": "nest build chain",
"build:notifications": "nest build notifications",
"build:common": "nest build common",
"build:migrations": "pnpm -F typeorm build",
"docker:dev": "docker compose -f docker-compose.yaml -f docker-compose.dev.yaml up --build",
"docker:prod": "docker-compose -f docker-compose.prod.yaml up --build",
"docker:prod:down": "docker-compose -f docker-compose.prod.yaml down",
"format": "prettier --write \"apps/**/*.ts\" \"libs/**/*.ts\"",
"postinstall": "sh ./scripts/postinstall.sh",
"typecheck": "tsc --noEmit -p tsconfig.json --composite false",
"start": "nest start",
"start:dev": "nest start --watch",
"start:debug": "nest start --debug --watch",
"start:prod": "node dist/apps/back-end/main",
"lint": "eslint \"{src,apps,libs,test}/**/*.ts\" --fix",
"typeorm": "typeorm-ts-node-commonjs",
"create-admin": "npx ts-node ./scripts/create-admin.ts",
"create-users": "npx ts-node ./scripts/add-users.ts",
"deploy:dev": "sh ./k8s/dev/deploy.sh",
"test:libs": "jest --testPathPattern='libs/.*\\.spec\\.ts$'",
"test:migrations": "pnpm --filter=typeorm test",
"test:all": "INCLUDE_LIBS=0 pnpm --filter=api test && INCLUDE_LIBS=0 pnpm --filter=chain test && INCLUDE_LIBS=0 pnpm --filter=notifications test && pnpm test:libs && pnpm --filter=typeorm test",
"test:cov:all": "pnpm --filter=api test:cov && pnpm --filter=chain test:cov && pnpm --filter=notifications test:cov && pnpm --filter=typeorm test:cov",
"migration:generate": "ts-node scripts/generate-migration.ts",
"migration:create": "pnpm typeorm migration:create",
"migration:run": "pnpm typeorm migration:run -d typeorm/data-source.ts",
"migration:revert": "pnpm typeorm migration:revert -d typeorm/data-source.ts"
},
"dependencies": {
"@hiero-ledger/proto": "catalog:",
"@hiero-ledger/sdk": "catalog:",
"@keyv/redis": "5.1.6",
"@nest-lab/throttler-storage-redis": "1.2.0",
"@nestjs/axios": "4.0.1",
"@nestjs/cache-manager": "3.1.2",
"@nestjs/common": "catalog:nestjs-core",
"@nestjs/config": "4.0.4",
"@nestjs/core": "catalog:nestjs-core",
"@nestjs/jwt": "11.0.2",
"@nestjs/microservices": "catalog:nestjs-core",
"@nestjs/passport": "11.0.5",
"@nestjs/platform-express": "catalog:nestjs-core",
"@nestjs/platform-socket.io": "catalog:nestjs-core",
"@nestjs/schedule": "6.1.3",
"@nestjs/swagger": "11.4.2",
"@nestjs/throttler": "6.5.0",
"@nestjs/typeorm": "11.0.1",
"@nestjs/websockets": "catalog:nestjs-core",
"argon2": "catalog:",
"axios": "catalog:",
"bcryptjs": "catalog:",
"cache-manager": "7.2.8",
"class-transformer": "0.5.1",
"class-validator": "0.14.1",
"dotenv": "catalog:",
"express": "5.2.1",
"ioredis": "5.10.1",
"joi": "18.2.1",
"keyv": "5.6.0",
"murlock": "4.4.0",
"nats": "2.29.3",
"nest-winston": "1.10.2",
"pg": "catalog:",
"readline-sync": "1.4.10",
"redis": "5.12.1",
"reflect-metadata": "catalog:",
"rxjs": "7.8.2",
"semver": "catalog:",
"typeorm": "catalog:",
"winston": "3.19.0"
},
"devDependencies": {
"@eslint/eslintrc": "3.3.5",
"@eslint/js": "10.0.1",
"@hashgraph/hedera-local": "2.39.4",
"@nestjs/cli": "11.0.21",
"@nestjs/schematics": "11.1.0",
"@nestjs/testing": "catalog:nestjs-core",
"@testcontainers/postgresql": "11.13.0",
"@testcontainers/rabbitmq": "11.13.0",
"@testcontainers/redis": "11.13.0",
"@types/express": "5.0.6",
"@types/jest": "catalog:",
"@types/node": "catalog:",
"@types/passport-jwt": "4.0.1",
"@types/passport-local": "1.0.38",
"@types/readline-sync": "1.4.8",
"@types/semver": "catalog:",
"@types/supertest": "7.2.0",
"@typescript-eslint/eslint-plugin": "8.59.3",
"@typescript-eslint/parser": "8.59.3",
"eslint": "10.3.0",
"eslint-config-prettier": "10.1.8",
"eslint-plugin-prettier": "5.5.5",
"globals": "17.6.0",
"jest": "catalog:",
"jest-mock-extended": "4.0.0",
"picocolors": "1.1.1",
"prettier": "catalog:",
"source-map-support": "0.5.21",
"supertest": "7.2.2",
"testcontainers": "11.13.0",
"ts-jest": "catalog:",
"ts-loader": "catalog:",
"ts-node": "catalog:",
"tsconfig-paths": "4.2.0",
"typescript": "catalog:"
},
"engines": {
"node": ">=24.0.0"
}
}