-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
114 lines (114 loc) · 4.14 KB
/
package.json
File metadata and controls
114 lines (114 loc) · 4.14 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
{
"name": "mento-analytics-api",
"version": "1.0.0",
"description": "Analytics API for tracking Mento Protocol's stablecoins and reserve assets",
"author": "",
"private": true,
"license": "UNLICENSED",
"engines": {
"node": ">=22.19.0"
},
"scripts": {
"build": "nest build",
"ci:config": "gcloud builds triggers list --project=mento-prod",
"clean": "rm -rf dist/",
"dev": "pnpm run clean && nest start --watch",
"format": "prettier --write \"src/**/*.ts\" \"test/**/*.ts\"",
"gcloud:build": "pnpm run gcloud:build:url && gcloud beta builds log $(gcloud builds list --project=mento-prod --limit=1 --format='value(id)') --stream --project=mento-prod",
"gcloud:build:url": "echo \"\nBuild URL: https://console.cloud.google.com/cloud-build/builds/$(gcloud builds list --project=mento-prod --limit=1 --format='value(id)')?project=mento-prod\n\"",
"gcloud:deployments": "gcloud run revisions list --service=mento-analytics-api --region=us-central1 --limit 10 --project mento-prod",
"gcloud:env": "./scripts/get-env.sh",
"logs": "./scripts/get-logs.sh",
"start": "nest start",
"start:dev": "pnpm run clean && nest start --watch",
"start:debug": "nest start --debug --watch",
"start:prod": "node dist/main",
"lint": "eslint \"{src,apps,libs,test}/**/*.ts\" --fix",
"test": "vitest run",
"test:watch": "vitest",
"test:cov": "vitest run --coverage",
"test:coverage": "vitest run --coverage",
"typecheck": "tsc --noEmit",
"test:debug": "vitest --inspect-brk --single-thread",
"sentry:sourcemaps": "sentry-cli sourcemaps inject --org mento-labs --project analytics-api ./dist && sentry-cli sourcemaps upload --org mento-labs --project analytics-api ./dist",
"docker:smoke-test": "./scripts/docker-smoke-test.sh",
"sentry:release": "./scripts/sentry-release.sh",
"sentry:release:deploy": "./scripts/sentry-release.sh $(git rev-parse HEAD) --deploy production https://mento-analytics-api-mento-prod.us-central1.run.app"
},
"dependencies": {
"@mento-protocol/contracts": "^0.4.0",
"@mento-protocol/mento-sdk": "3.2.6",
"@nestjs/cache-manager": "^2.3.0",
"@nestjs/common": "^10.4.16",
"@nestjs/config": "^3.3.0",
"@nestjs/core": "^10.0.0",
"@nestjs/platform-express": "^10.4.1",
"@nestjs/schedule": "^4.1.1",
"@nestjs/swagger": "^8.0.5",
"@nestjs/throttler": "^6.5.0",
"@sentry/cli": "^2.53.0",
"@sentry/nestjs": "^10.27.0",
"@sentry/profiling-node": "^10.27.0",
"@types/ws": "^8.18.1",
"bignumber.js": "^9.1.2",
"cache-manager": "5.7.6",
"limiter": "^2.1.0",
"nestjs-pino": "^4.1.0",
"p-limit": "^7.1.1",
"pino": "^9.5.0",
"pino-pretty": "^13.0.0",
"reflect-metadata": "^0.2.0",
"rxjs": "^7.8.1",
"viem": "^2.24.2",
"ws": "^8.18.2"
},
"devDependencies": {
"@eslint/eslintrc": "^3.3.1",
"@eslint/js": "^9.32.0",
"@nestjs/cli": "^10.0.0",
"@nestjs/schematics": "^10.0.0",
"@nestjs/testing": "^10.0.0",
"@swc/cli": "^0.5.2",
"@types/express": "^4.17.17",
"@types/node": "^20.3.1",
"@types/supertest": "^6.0.3",
"@typescript-eslint/eslint-plugin": "^8.39.0",
"@typescript-eslint/parser": "^8.39.0",
"@vitest/coverage-v8": "^4.0.18",
"eslint": "^9.32.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.3",
"globals": "^16.3.0",
"prettier": "^3.0.0",
"source-map-support": "^0.5.21",
"supertest": "^7.1.4",
"ts-loader": "^9.4.3",
"ts-node": "^10.9.1",
"tsconfig-paths": "^4.2.0",
"typescript": "^5.1.3",
"unplugin-swc": "^1.5.9",
"vitest": "^4.0.18"
},
"pnpm": {
"overrides": {
"brace-expansion": ">=2.0.2 <3.0.0",
"diff": ">=5.0.0",
"form-data": ">=4.0.4",
"glob": ">=10.5.0",
"js-yaml": ">=4.1.1",
"lodash": ">=4.17.23",
"ajv": ">=6.14.0 <7.0.0 || >=8.17.1",
"multer": ">=2.1.0",
"path-to-regexp": ">=0.1.12",
"qs": ">=6.14.2",
"rollup": ">=4.58.0",
"serialize-javascript": ">=7.0.2",
"tmp": ">=0.2.0",
"webpack": ">=5.99.0"
},
"onlyBuiltDependencies": [
"@nestjs/core",
"nestjs-pino"
]
}
}