-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
88 lines (88 loc) · 3.15 KB
/
package.json
File metadata and controls
88 lines (88 loc) · 3.15 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
{
"name": "multi-party-computation-controller-api",
"version": "1.0.0",
"description": "NestJS controller API for the multi-party computation service.",
"author": "Maxime Dréan",
"private": true,
"license": "MIT",
"scripts": {
"build": "nest build",
"format": "prettier --write \"src/**/*.ts\" \"test/**/*.ts\"",
"start": "nest start",
"start:dev": "nest start --watch",
"start:debug": "nest start --debug --watch",
"start:prod": "node dist/main",
"lint": "eslint \"{src,apps,libs,test}/**/*.ts\" --fix",
"test": "jest --runInBand --passWithNoTests",
"test:watch": "jest --watch --runInBand --passWithNoTests",
"test:coverage": "jest --coverage --runInBand --passWithNoTests",
"test:debug": "node --inspect-brk -r tsconfig-paths/register -r ts-node/register node_modules/.bin/jest --runInBand",
"test:e2e": "jest --config ./test/jest-e2e.json",
"docs": "typedoc",
"ci": "bun run format && bun run lint && bun run test:coverage && bun run docs && bun run build",
"act:ci": "act -W .github/workflows/ci.yaml -P ubuntu-latest=ghcr.io/catthehacker/ubuntu:full-latest --container-architecture linux/amd64"
},
"dependencies": {
"@grpc/grpc-js": "^1.14.3",
"@grpc/proto-loader": "^0.7.15",
"@nestjs/bullmq": "^11.0.4",
"@nestjs/common": "^11.1.18",
"@nestjs/config": "^4.0.3",
"@nestjs/core": "^11.1.18",
"@nestjs/microservices": "^11.1.18",
"@nestjs/platform-express": "^11.1.18",
"@nestjs/swagger": "^11.2.6",
"@nestjs/throttler": "^6.5.0",
"bullmq": "^5.73.0",
"class-transformer": "^0.5.1",
"class-validator": "^0.14.4",
"ioredis": "^5.10.1",
"nestjs-pino": "^4.6.1",
"neverthrow": "^8.2.0",
"pino-pretty": "^13.1.3",
"pino-roll": "^4.0.0",
"reflect-metadata": "^0.2.2",
"rxjs": "^7.8.2",
"uuid": "^13.0.0",
"zod": "^4.3.6"
},
"devDependencies": {
"@babel/eslint-parser": "^7.28.6",
"@eslint/eslintrc": "^3.3.5",
"@eslint/js": "^9.39.4",
"@nestjs/cli": "^11.0.17",
"@nestjs/schematics": "^11.0.10",
"@nestjs/testing": "^11.1.18",
"@types/express": "^5.0.6",
"@types/jest": "^30.0.0",
"@types/node": "^22.19.17",
"@types/supertest": "^6.0.3",
"@typescript-eslint/parser": "^8.58.0",
"eslint": "^9.39.4",
"eslint-config-prettier": "^10.1.8",
"eslint-import-resolver-alias": "^1.1.2",
"eslint-import-resolver-typescript": "^4.4.4",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-jsdoc": "^61.7.1",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-no-relative-import-paths": "^1.6.1",
"eslint-plugin-no-secrets": "^2.3.3",
"eslint-plugin-prettier": "^5.5.5",
"eslint-plugin-promise": "^7.2.1",
"eslint-plugin-security": "^3.0.1",
"eslint-plugin-simple-import-sort": "^12.1.1",
"globals": "^16.5.0",
"jest": "^30.3.0",
"prettier": "^3.8.1",
"prettier-plugin-jsdoc": "^1.8.0",
"source-map-support": "^0.5.21",
"supertest": "^7.2.2",
"ts-jest": "^29.4.9",
"ts-loader": "^9.5.7",
"ts-node": "^10.9.2",
"tsconfig-paths": "^4.2.0",
"typedoc": "^0.28.18",
"typescript": "^5.9.3",
"typescript-eslint": "^8.58.0"
}
}