forked from FX-GENE/stargate-backend
-
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.44 KB
/
Copy pathpackage.json
File metadata and controls
80 lines (80 loc) · 2.44 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": "stargate-backend",
"version": "1.0.0",
"private": true,
"description": "NestJS API, PostgreSQL database, Redis streams, and Rust reconciler for Stargate Protocol.",
"engines": {
"node": ">=24.0.0 <25.0.0",
"npm": ">=10.0.0"
},
"scripts": {
"build": "nest build",
"start": "nest start",
"start:dev": "nest start --watch",
"typecheck": "tsc --noEmit",
"test": "jest",
"test:e2e": "jest --config ./test/jest-e2e.json",
"db:migrate": "ts-node -r tsconfig-paths/register src/database/run-migrations.ts",
"db:seed": "ts-node -r tsconfig-paths/register scripts/seed.ts",
"lint": "eslint \"{src,test,scripts}/**/*.ts\" --max-warnings 0",
"format:check": "prettier --check \"{src,test,scripts}/**/*.ts\"",
"generate:openapi": "ts-node -r tsconfig-paths/register scripts/generate-openapi.ts",
"publish:types": "npm --prefix packages/types run build && npm publish --workspace packages/types --access public",
"prepare": "husky"
},
"workspaces": [
"packages/types"
],
"dependencies": {
"@aws-sdk/client-kms": "^3.600.0",
"@nestjs/common": "^10.4.0",
"@nestjs/config": "^3.2.3",
"@nestjs/core": "^10.4.0",
"@nestjs/jwt": "^10.2.0",
"@nestjs/passport": "^10.0.3",
"@nestjs/platform-express": "^10.4.0",
"@nestjs/schedule": "^4.1.0",
"@nestjs/swagger": "^7.4.0",
"@types/pdfkit": "^0.17.6",
"class-transformer": "^0.5.1",
"class-validator": "^0.14.1",
"cookie-parser": "^1.4.6",
"ioredis": "^5.4.1",
"passport": "^0.7.0",
"passport-jwt": "^4.0.1",
"pdfkit": "^0.18.0",
"pg": "^8.12.0",
"prom-client": "^15.1.3",
"reflect-metadata": "^0.2.2",
"rxjs": "^7.8.1",
"stellar-sdk": "^13.1.0",
"swagger-ui-express": "^5.0.1",
"uuid": "^10.0.0",
"zod": "^3.23.8",
"graphql": "^16.8.0"
},
"devDependencies": {
"@nestjs/cli": "^10.4.5",
"@nestjs/testing": "^10.4.0",
"@types/cookie-parser": "^1.4.7",
"@types/express": "^4.17.21",
"@types/jest": "^29.5.12",
"@types/node": "^22.0.0",
"@types/passport-jwt": "^4.0.1",
"@types/pg": "^8.11.6",
"husky": "^9.1.7",
"jest": "^29.7.0",
"lint-staged": "^15.2.10",
"prettier": "^3.3.3",
"ts-jest": "^29.2.5",
"ts-node": "^10.9.2",
"tsconfig-paths": "^4.2.0",
"typescript": "^5.5.4"
},
"lint-staged": {
"{src,test,scripts}/**/*.ts": [
"prettier --write",
"eslint --max-warnings 0"
]
}
}