-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
95 lines (95 loc) · 2.8 KB
/
package.json
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
{
"name": "auth-service",
"version": "1.0.0",
"description": "Backend Auth Service",
"scripts": {
"test": "env NODE_ENV=test jest --detectOpenHandles --runInBand --forceExit",
"stryker": "npx stryker run --logLevel trace",
"dev": "nodemon",
"start": "node --require './build/src/presentation/tracing.js' build/src/presentation/http/server.js",
"lint": "eslint './{src,test}/**/*.ts' --fix",
"lint:check": "eslint './{src,test}/**/*.ts'",
"format": "prettier . --write",
"format:check": "prettier . --check",
"build": "tsc --project tsconfig.json",
"build:check": "npm run build -- --noEmit"
},
"keywords": [
"express",
"auth"
],
"main": "build/presentation/http/server.js",
"author": "Andrew Hanasiro",
"license": "MIT",
"bugs": {
"url": "https://github.com/AndrewHanasiro/tournament/issues"
},
"homepage": "https://github.com/AndrewHanasiro/tournament#readme",
"engines": {
"node": "22.12.x"
},
"dependencies": {
"@opentelemetry/api": "1.9.0",
"@opentelemetry/exporter-zipkin": "1.29.0",
"@opentelemetry/instrumentation": "0.56.0",
"@opentelemetry/sdk-trace-node": "1.29.0",
"axios": "1.7.9",
"bcrypt": "5.1.1",
"body-parser": "1.20.3",
"cors": "2.8.5",
"dotenv": "16.4.7",
"express": "4.21.2",
"helmet": "8.0.0",
"joi": "17.13.3",
"jsonwebtoken": "9.0.2",
"kafkajs": "2.2.4",
"knex": "3.1.0",
"otplib": "12.0.1",
"pg": "8.13.1",
"prom-client": "15.1.3",
"redis": "4.7.0",
"swagger-ui-express": "5.0.1",
"uuid": "11.0.3",
"winston": "3.17.0",
"zxcvbn": "4.4.2"
},
"devDependencies": {
"@commitlint/cli": "19.6.0",
"@commitlint/config-conventional": "19.6.0",
"@stryker-mutator/core": "8.7.1",
"@stryker-mutator/jest-runner": "8.7.1",
"@testcontainers/kafka": "10.16.0",
"@testcontainers/postgresql": "10.16.0",
"@testcontainers/redis": "10.16.0",
"@types/bcrypt": "5.0.2",
"@types/chai": "5.0.1",
"@types/cors": "2.8.17",
"@types/express": "5.0.0",
"@types/jest": "29.5.14",
"@types/jsonwebtoken": "9.0.7",
"@types/node": "22.10.2",
"@types/supertest": "6.0.2",
"@types/swagger-ui-express": "4.1.7",
"@types/uuid": "10.0.0",
"@types/zxcvbn": "4.4.5",
"@typescript-eslint/eslint-plugin": "8.18.0",
"@typescript-eslint/parser": "8.18.0",
"casual": "1.6.2",
"chai": "5.1.2",
"eslint": "8.57.1",
"eslint-import-resolver-typescript": "3.7.0",
"eslint-plugin-import": "2.31.0",
"eslint-plugin-sonarjs": "3.0.1",
"husky": "9.1.7",
"jest": "29.7.0",
"nock": "13.5.6",
"nodemon": "3.1.9",
"nyc": "17.1.0",
"prettier": "3.4.2",
"supertest": "7.0.0",
"ts-jest": "29.2.5",
"ts-mockito": "2.6.1",
"ts-node": "10.9.2",
"typescript": "5.7.2"
}
}