-
Notifications
You must be signed in to change notification settings - Fork 37
Expand file tree
/
Copy pathpackage.json
More file actions
100 lines (100 loc) · 2.74 KB
/
Copy pathpackage.json
File metadata and controls
100 lines (100 loc) · 2.74 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
{
"name": "wraith",
"version": "1.0.0",
"description": "Soroban incoming token transfer indexer — fills the Horizon indexing gap for SEP-41/CAP-67 events",
"main": "dist/index.js",
"scripts": {
"dev": "ts-node-dev --respawn --transpile-only src/index.ts",
"build": "tsc",
"start": "node dist/index.js",
"test": "jest --runInBand",
"test:integration": "vitest run --config vitest.integration.config.ts",
"test:watch": "jest --watch",
"test:chaos": "jest --runInBand --testPathPatterns=tests/chaos --testTimeout=300000 --config=jest.chaos.config.js",
"db:generate": "prisma generate",
"db:migrate": "prisma migrate dev",
"db:push": "prisma db push",
"db:studio": "prisma studio",
"docs": "typedoc",
"docs:openapi": "ts-node src/openapi/build.ts",
"backfill:summaries": "ts-node scripts/backfill-account-summaries.ts",
"backfill": "ts-node src/cli.ts backfill",
"bench": "ts-node --project bench/tsconfig.json bench/insert.bench.ts"
},
"jest": {
"preset": "ts-jest",
"testEnvironment": "node",
"roots": [
"<rootDir>/src",
"<rootDir>/tests"
],
"testMatch": [
"**/__tests__/**/*.test.ts",
"**/tests/**/*.test.ts"
],
"testPathIgnorePatterns": [
"/node_modules/",
"<rootDir>/tests/integration/",
"<rootDir>/tests/chaos/"
],
"transform": {
"^.+\\.tsx?$": [
"ts-jest",
{
"tsconfig": "tsconfig.test.json"
}
]
},
"moduleFileExtensions": [
"ts",
"js",
"json"
],
"clearMocks": true,
"collectCoverage": true,
"coverageThreshold": {
"global": {
"lines": 55,
"functions": 50,
"branches": 38,
"statements": 55
}
}
},
"dependencies": {
"@apollo/server": "^5.5.1",
"@as-integrations/express4": "^1.1.2",
"@asteasolutions/zod-to-openapi": "^8.5.0",
"@fast-csv/format": "^5.0.7",
"@prisma/client": "^5.10.0",
"@stellar/stellar-sdk": "^15.0.1",
"cors": "^2.8.5",
"dotenv": "^16.4.5",
"express": "^4.18.3",
"express-rate-limit": "^8.3.2",
"graphql": "^16.11.0",
"ioredis": "^5.11.1",
"parquetjs-lite": "^0.8.7",
"ws": "^8.20.0",
"zod": "^4.4.3"
},
"devDependencies": {
"@types/cors": "^2.8.17",
"@types/express": "^4.17.21",
"@types/express-rate-limit": "^5.1.3",
"@types/jest": "^30.0.0",
"@types/node": "^20.11.24",
"@types/supertest": "^7.2.0",
"@types/ws": "^8.18.1",
"fast-check": "^3.22.0",
"jest": "^30.4.2",
"prisma": "^5.10.0",
"supertest": "^7.2.2",
"tinybench": "^6.0.2",
"ts-jest": "^29.4.9",
"ts-node-dev": "^2.0.0",
"typedoc": "^0.28.19",
"typescript": "^5.4.2",
"vitest": "^3.2.4"
}
}