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
103 lines (103 loc) · 3.06 KB
/
Copy pathpackage.json
File metadata and controls
103 lines (103 loc) · 3.06 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
{
"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",
"load:baseline": "node tests/load/run-baselines.js"
},
"keywords": [],
"author": "",
"license": "ISC",
"type": "commonjs",
"jest": {
"testEnvironment": "node",
"transformIgnorePatterns": [],
"testPathIgnorePatterns": [],
"moduleNameMapper": {
"^node:test$": "<rootDir>/tests/mocks/node_test_shim.js",
"^node:assert/strict$": "<rootDir>/tests/mocks/node_assert_shim.js"
},
"setupFilesAfterEnv": [
"<rootDir>/tests/mocks/setup.js"
],
"coverageThreshold": {
"src/middleware/legalHoldGate.js": {
"branches": 80,
"functions": 95,
"lines": 95,
"statements": 95
},
"src/services/escrowRead.js": {
"branches": 75,
"functions": 95,
"lines": 95,
"statements": 95
}
}
},
"dependencies": {
"@aws-sdk/client-s3": "^3.665.0",
"@aws-sdk/s3-request-presigner": "^3.665.0",
"@sentry/node": "^8.0.0",
"@stellar/stellar-sdk": "^16.0.1",
"ajv": "^8.17.1",
"ajv-formats": "^3.0.1",
"axios": "^1.16.1",
"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": "^14.2.0",
"rate-limit-redis": "^4.3.1",
"sqlite3": "^5.1.6",
"swagger-jsdoc": "^6.2.8",
"zod": "^4.3.6"
},
"devDependencies": {
"@babel/types": "^7.29.7",
"@types/node": "^20.0.0",
"autocannon": "^8.0.0",
"c8": "^10.1.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",
"redis": "^6.0.1",
"sqlite3": "^6.0.1",
"supertest": "^7.0.0",
"ts-node": "^10.9.2",
"typescript": "^5.0.0"
}
}