-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 2.53 KB
/
Copy pathpackage.json
File metadata and controls
77 lines (77 loc) · 2.53 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
{
"name": "orbitstream-backend",
"version": "1.0.0",
"description": "OrbitStream backend API — real-time token streaming on Stellar/Soroban",
"private": true,
"scripts": {
"build": "tsc -p tsconfig.json",
"start": "node dist/main.js",
"dev": "ts-node src/main.ts",
"test": "jest",
"test:unit": "jest --testPathPattern='(?<!integration)\\.spec\\.ts$' --passWithNoTests",
"test:integration": "jest --testPathPattern='integration\\.spec\\.ts$' --passWithNoTests",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage --testPathPattern='(?<!integration)\\.spec\\.ts$'",
"test:cov": "jest --coverage",
"lint": "eslint \"{src,test}/**/*.ts\"",
"lint:fix": "eslint \"{src,test}/**/*.ts\" --fix",
"format": "prettier --write \"src/**/*.ts\"",
"format:check": "prettier --check \"src/**/*.ts\"",
"drizzle:generate": "drizzle-kit generate",
"drizzle:push": "drizzle-kit push",
"drizzle:studio": "drizzle-kit studio",
"config:check": "ts-node scripts/config-check.ts"
},
"dependencies": {
"@nestjs/common": "^10.0.0",
"@nestjs/config": "^4.0.4",
"@nestjs/core": "^10.0.0",
"@nestjs/jwt": "^10.1.0",
"@nestjs/passport": "^10.0.0",
"@nestjs/platform-express": "^10.0.0",
"@nestjs/schedule": "^6.1.3",
"@nestjs/terminus": "^10.1.0",
"@nestjs/typeorm": "^10.0.0",
"@stellar/stellar-sdk": "^12.0.0",
"axios": "^1.6.0",
"class-transformer": "^0.5.1",
"class-validator": "^0.14.0",
"dotenv": "^16.4.5",
"drizzle-orm": "^0.38.0",
"express": "^4.21.2",
"ioredis": "^5.3.2",
"passport": "^0.6.0",
"passport-jwt": "^4.0.1",
"pg": "^8.11.0",
"postgres": "^3.4.5",
"prom-client": "^15.0.0",
"reflect-metadata": "^0.1.13",
"rxjs": "^7.8.0",
"typeorm": "^0.3.17",
"uuid": "^9.0.0",
"zod": "^4.4.3"
},
"devDependencies": {
"@nestjs/cli": "^10.0.0",
"@nestjs/schematics": "^10.0.0",
"@nestjs/testing": "^10.0.0",
"@types/express": "^4.17.21",
"@types/jest": "^29.5.2",
"@types/node": "^20.3.1",
"@types/passport-jwt": "^3.0.8",
"@types/supertest": "^6.0.0",
"@typescript-eslint/eslint-plugin": "^7.0.0",
"@typescript-eslint/parser": "^7.0.0",
"drizzle-kit": "^0.30.4",
"eslint": "^8.57.1",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-prettier": "^5.0.0",
"ioredis-mock": "^8.9.0",
"jest": "^29.5.0",
"prettier": "^3.0.0",
"supertest": "^6.3.0",
"ts-jest": "^29.1.0",
"ts-node": "^10.9.2",
"typescript": "^5.1.3"
}
}