forked from Liquifact/Liquifact-backend
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
143 lines (143 loc) · 5.54 KB
/
Copy pathpackage.json
File metadata and controls
143 lines (143 loc) · 5.54 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
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
{
"name": "backend",
"version": "1.0.0",
"description": "",
"main": "src/index.js",
"scripts": {
"start": "node src/index.js",
"dev": "node --watch src/index.js",
"dev:ts": "node --watch -r ts-node/register/transpile-only src/ts-entry.ts",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"lint:new": "eslint src/routes/invoiceStateRoutes.js src/services/invoiceStateMachine.js tests/invoice.state.test.js",
"typecheck": "tsc -p tsconfig.json --noEmit",
"typecheck:jsdoc": "tsc -p tsconfig.checkjs.json --noEmit",
"build": "tsc -p tsconfig.build.json",
"start:dist": "node dist/index.js",
"db:migrate": "node-pg-migrate up",
"db:rollback": "knex migrate:rollback",
"db:seed": "knex seed:run",
"test": "jest --runInBand --forceExit",
"test:coverage": "jest --runInBand --forceExit --coverage",
"test:e2e": "jest tests/e2e/smoke.test.js --runInBand",
"e2e:api": "node e2e-runner.js",
"db:migrate:down": "node-pg-migrate down",
"db:migrate:create": "node-pg-migrate create",
"db:migrate:reset": "node-pg-migrate reset",
"db:setup": "node-pg-migrate up"
},
"keywords": [],
"author": "",
"license": "ISC",
"type": "commonjs",
"jest": {
"testEnvironment": "node",
"testPathIgnorePatterns": [
"<rootDir>/src/__tests__/auth.test.js",
"<rootDir>/src/__tests__/escrowCache.test.js",
"<rootDir>/src/__tests__/pathInvoice.test.js",
"<rootDir>/src/__tests__/bodySizeLimits.test.js",
"<rootDir>/src/__tests__/escrowVersions.test.js",
"<rootDir>/src/__tests__/invoice.api.test.js",
"<rootDir>/src/__tests__/rateLimit.test.js",
"<rootDir>/src/app.test.js",
"<rootDir>/src/index.test.js",
"<rootDir>/src/config/index.test.js",
"<rootDir>/src/config/escrowMap.test.js",
"<rootDir>/src/config/stellar.test.js",
"<rootDir>/src/services/health.integration.test.js",
"<rootDir>/src/tests/invoice.test.js",
"<rootDir>/src/tests/pagination.test.js",
"<rootDir>/src/tests/response.test.js",
"<rootDir>/src/tests/health.stellar.test.js",
"<rootDir>/tests/api-errors.test.js",
"<rootDir>/tests/integration/errorHandling.test.js",
"<rootDir>/tests/integration/migrations.test.js",
"<rootDir>/tests/integration/observability.test.js",
"<rootDir>/tests/middleware-security.test.js",
"<rootDir>/tests/e2e/smoke.test.js",
"<rootDir>/tests/errors-unit.test.js",
"<rootDir>/tests/escrow.attestations.test.js",
"<rootDir>/tests/escrow.batch.test.js",
"<rootDir>/tests/escrow.derived.test.js",
"<rootDir>/tests/escrow.legalhold.test.js",
"<rootDir>/tests/escrow.read.test.js",
"<rootDir>/tests/escrow.tokenMeta.test.js",
"<rootDir>/tests/escrowSubmit.stub.test.js",
"<rootDir>/tests/integration.test.js",
"<rootDir>/tests/invest.batched_list.test.js",
"<rootDir>/tests/invest.list.test.js",
"<rootDir>/tests/investor.locks.test.js",
"<rootDir>/tests/invoice-correlation.test.js",
"<rootDir>/tests/invoices.test.js",
"<rootDir>/tests/marketplace.test.js",
"<rootDir>/tests/maturityReminders.test.js",
"<rootDir>/tests/metrics.test.js",
"<rootDir>/tests/problems.test.js",
"<rootDir>/tests/reconcileEscrow.test.js",
"<rootDir>/tests/retention.95-final.test.js",
"<rootDir>/tests/retention.95-percent.test.js",
"<rootDir>/tests/retention.95-ultimate.test.js",
"<rootDir>/tests/retention.comprehensive.test.js",
"<rootDir>/tests/retention.coverage-boost.test.js",
"<rootDir>/tests/retention.coverage.test.js",
"<rootDir>/tests/retention.dryRun.test.js",
"<rootDir>/tests/retention.final-95-coverage.test.js",
"<rootDir>/tests/retention.final-95.test.js",
"<rootDir>/tests/retention.final-coverage.test.js",
"<rootDir>/tests/retention.final-push.test.js",
"<rootDir>/tests/retention.full-coverage.test.js",
"<rootDir>/tests/retention.handler.test.js",
"<rootDir>/tests/retention.integration.test.js",
"<rootDir>/tests/retention.reach-95.test.js",
"<rootDir>/tests/retention.ultimate-95.test.js",
"<rootDir>/tests/security.headers.test.js",
"<rootDir>/tests/security.middleware.test.js",
"<rootDir>/tests/server.test.js",
"<rootDir>/tests/sme.metrics.test.js",
"<rootDir>/tests/soroban.sim.test.js",
"<rootDir>/tests/unit/errorHandler.test.js",
"<rootDir>/tests/unit/migration-utils.test.js",
"<rootDir>/tests/validation.test.js",
"<rootDir>/tests/webhooks.signing.test.js"
]
},
"dependencies": {
"@aws-sdk/client-s3": "^3.665.0",
"@aws-sdk/s3-request-presigner": "^3.665.0",
"@sentry/node": "^8.0.0",
"chessify-protocol": "^0.1.0",
"cors": "^2.8.6",
"dotenv": "^17.3.1",
"express": "^5.2.1",
"express-rate-limit": "^7.5.0",
"helmet": "^8.1.0",
"jsonwebtoken": "^9.0.2",
"knex": "^3.1.0",
"multer": "^1.4.5-lts.1",
"nanoid": "^5.1.9",
"pino": "^10.3.1",
"pino-http": "^11.0.0",
"pino-pretty": "^13.1.3",
"prom-client": "^15.1.3",
"sqlite3": "^5.1.6",
"zod": "^4.3.6"
},
"devDependencies": {
"@types/node": "^20.0.0",
"ajv": "^8.20.0",
"ajv-formats": "^3.0.1",
"autocannon": "^8.0.0",
"c8": "^11.0.0",
"eslint": "^9.21.0",
"eslint-plugin-jsdoc": "50.6.3",
"eslint-plugin-security": "^3.0.1",
"globals": "^16.0.0",
"jest": "^30.3.0",
"sqlite3": "^6.0.1",
"supertest": "^7.0.0",
"swagger-jsdoc": "^6.3.0",
"ts-node": "^10.9.2",
"typescript": "^5.0.0"
}
}