-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (80 loc) · 2.55 KB
/
package.json
File metadata and controls
80 lines (80 loc) · 2.55 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
{
"name": "compliance-data-platform",
"version": "0.14.0",
"description": "",
"author": "",
"private": true,
"license": "UNLICENSED",
"scripts": {
"build": "nest build",
"format": "prettier --write \"src/**/*.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",
"migration:deploy": "npx prisma migrate deploy --schema prisma/schema.prisma",
"migration:generate": "npx prisma generate --schema prisma/schema.prisma --sql",
"migration:generate_dmob": "npx prisma generate --schema prismaDmob/schema.prisma --sql",
"migration:create_migration": "npx prisma migrate dev --schema prisma/schema.prisma --name MIGRATION_NAME"
},
"dependencies": {
"@glif/filecoin-address": "^4.0.0",
"@nestjs/axios": "^4.0.1",
"@nestjs/cache-manager": "^3.0.1",
"@nestjs/common": "^11.1.6",
"@nestjs/config": "^4.0.2",
"@nestjs/core": "^11.1.6",
"@nestjs/platform-express": "^11.1.6",
"@nestjs/schedule": "^6.0.0",
"@nestjs/swagger": "^11.2.0",
"@nestjs/terminus": "^11.0.0",
"@nestjs/typeorm": "^11.0.0",
"@octokit/auth-app": "^6.1.3",
"@prisma/client": "^6.8.2",
"@willsoto/nestjs-prometheus": "^6.0.2",
"async-mutex": "^0.5.0",
"axios": "^1.12.2",
"axios-better-stacktrace": "^2.1.7",
"bytes-iec": "^3.1.1",
"cache-manager": "^7.2.0",
"cbor": "^10.0.11",
"class-transformer": "^0.5.1",
"class-validator": "^0.14.2",
"compression": "^1.8.1",
"lodash": "^4.17.21",
"luxon": "^3.7.2",
"multiaddr": "^10.0.1",
"pg": "^8.16.3",
"pg-iterator": "^0.3.0",
"pg-query-stream": "^4.10.3",
"probot": "^13.4.3",
"prom-client": "^15.1.3",
"reflect-metadata": "^0.2.2",
"rxjs": "^7.8.1",
"semver": "^7.7.4",
"viem": "^2.28.4",
"zod": "^4.1.13"
},
"devDependencies": {
"@nestjs/cli": "^11.0.10",
"@nestjs/schematics": "^11.0.7",
"@types/compression": "^1.8.1",
"@types/express": "^5.0.3",
"@types/lodash": "^4.17.20",
"@types/node": "^24.4.0",
"@types/pg": "^8.15.5",
"@typescript-eslint/eslint-plugin": "^8.43.0",
"@typescript-eslint/parser": "^8.43.0",
"eslint": "^8.5.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.4",
"filesize": "^11.0.2",
"prettier": "^3.6.2",
"prisma": "^6.8.2",
"ts-loader": "^9.5.4",
"ts-node": "^10.9.2",
"tsconfig-paths": "^4.2.0",
"typescript": "^5.6.2"
}
}