-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
77 lines (77 loc) · 2.39 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
{
"name": "psbapi-microservice-ipgeo",
"version": "2.0.8",
"private": true,
"description": "IP Geolocation microservice",
"type": "module",
"scripts": {
"build": "tsc",
"postbuild": "copyfiles -e '**/*.mts' -e '**/*.ts' 'src/**/*' 'test/**/*' dist/",
"start:dev": "nodemon -L",
"lint": "eslint . -f gha",
"lint:fix": "eslint --fix .",
"pretest": "npm run lint",
"test": "mocha",
"posttest": "npm run build",
"pretest:coverage": "rimraf dist; npm run build",
"test:coverage": "cross-env JS_TESTS=1 c8 mocha dist/test"
},
"keywords": [],
"author": "Myrotvorets <[email protected]> (https://myrotvorets.center/)",
"license": "MIT",
"dependencies": {
"@cloudnative/health-connect": "^2.1.0",
"@myrotvorets/express-microservice-middlewares": "^3.1.2",
"@myrotvorets/express-otel-middlewares": "^1.2.3",
"@myrotvorets/express-request-logger": "^1.2.3",
"@myrotvorets/oav-installer": "^5.0.1",
"@myrotvorets/opentelemetry-configurator": "^7.13.1",
"@myrotvorets/otel-utils": "^1.4.0",
"@opentelemetry/api": "^1.9.0",
"@opentelemetry/core": "^1.30.0",
"awilix": "^12.0.4",
"envalid": "^8.0.0",
"express": "^4.21.2",
"mmdb-lib": "^2.1.1"
},
"devDependencies": {
"@myrotvorets/eslint-config-myrotvorets-ts": "^3.0.2",
"@types/chai": "^5.0.1",
"@types/chai-as-promised": "^8.0.1",
"@types/express": "^5.0.0",
"@types/mocha": "^10.0.10",
"@types/multer": "^1.4.12",
"@types/node": "^22.13.1",
"@types/supertest": "^6.0.2",
"c8": "^10.1.3",
"chai": "^5.1.2",
"chai-as-promised": "npm:@rvagg/chai-as-promised@^8.0.2",
"copyfiles": "^2.4.1",
"cross-env": "^7.0.3",
"eslint-formatter-gha": "^1.5.2",
"eslint-plugin-mocha": "^10.5.0",
"mocha": "^11.1.0",
"mocha-multi": "^1.1.7",
"mocha-reporter-gha": "^1.1.1",
"mocha-reporter-sonarqube": "^2.1.1",
"nodemon": "^3.1.9",
"rimraf": "^6.0.1",
"supertest": "^7.0.0",
"ts-node": "^10.9.2",
"typescript": "^5.7.3"
},
"overrides": {
"ansi-color": "npm:@myrotvorets/ansi-color@^0.2.2"
},
"directories": {
"test": "test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/myrotvorets/psb-api-ipgeo.git"
},
"bugs": {
"url": "https://github.com/myrotvorets/psb-api-ipgeo/issues"
},
"homepage": "https://github.com/myrotvorets/psb-api-ipgeo#readme"
}