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
67 lines (67 loc) · 2.02 KB
/
Copy pathpackage.json
File metadata and controls
67 lines (67 loc) · 2.02 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
{
"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",
"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",
"test": "jest --runInBand --forceExit",
"test:coverage": "jest --runInBand --forceExit --coverage"
},
"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/invoice.test.js",
"<rootDir>/src/tests/pagination.test.js",
"<rootDir>/src/tests/response.test.js",
"<rootDir>/tests/api-errors.test.js",
"<rootDir>/tests/contract/api-schemas.test.js",
"<rootDir>/tests/integration/errorHandling.test.js",
"<rootDir>/tests/middleware-security.test.js",
"<rootDir>/src/__tests__/rateLimit.test.js",
"<rootDir>/src/config/index.test.js"
]
},
"dependencies": {
"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",
"nanoid": "^5.1.9",
"pino": "^10.3.1",
"pino-http": "^11.0.0",
"pino-pretty": "^13.1.3",
"zod": "^4.3.6"
},
"devDependencies": {
"autocannon": "^8.0.0",
"c8": "^11.0.0",
"@types/node": "^20.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",
"supertest": "^7.0.0",
"ts-node": "^10.9.2",
"typescript": "^5.0.0"
}
}