-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 2 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
{
"name": "videntigraf-microservice",
"version": "2.0.4",
"description": "",
"type": "module",
"scripts": {
"build": "tsc",
"start:dev": "nodemon -L",
"lint": "eslint -f gha .",
"lint:fix": "eslint --fix .",
"pretest": "npm run lint",
"test": "mocha",
"posttest": "npm run build",
"pretest:coverage": "npm run build",
"test:coverage": "rm -rf dist/src/specs && cp -R src/specs dist/src/ && JS_TESTS=1 c8 mocha dist/test"
},
"author": "Myrotvorets <support@myrotvorets.center> (https://myrotvorets.center/)",
"license": "MIT",
"dependencies": {
"@cloudnative/health-connect": "^2.1.0",
"@myrotvorets/clean-up-after-multer": "^1.1.12",
"@myrotvorets/envalidators": "^2.1.3",
"@myrotvorets/express-async-middleware-wrapper": "^2.2.3",
"@myrotvorets/express-microservice-middlewares": "^3.1.2",
"@myrotvorets/express-otel-middlewares": "^1.2.3",
"@myrotvorets/express-request-logger": "^1.2.3",
"@myrotvorets/facex": "^2.7.0",
"@myrotvorets/oav-installer": "^5.0.1",
"@myrotvorets/opentelemetry-configurator": "^7.13.1",
"@myrotvorets/otel-utils": "^1.4.0",
"@opentelemetry/api": "^1.9.0",
"awilix": "^12.0.4",
"envalid": "^8.0.0",
"express": "^4.21.2",
"express-openapi-validator": "^5.3.9"
},
"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.10.7",
"@types/supertest": "^6.0.2",
"c8": "^10.1.3",
"chai": "^5.1.2",
"chai-as-promised": "npm:@rvagg/chai-as-promised@^8.0.2",
"eslint-formatter-gha": "^1.5.2",
"eslint-plugin-mocha": "^10.5.0",
"mocha": "^11.0.1",
"mocha-multi": "^1.1.7",
"mocha-reporter-gha": "^1.1.1",
"mocha-reporter-sonarqube": "^2.1.1",
"nodemon": "^3.1.9",
"supertest": "^7.0.0",
"ts-node": "^10.9.2",
"typescript": "^5.7.3"
}
}