-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathpackage.json
81 lines (81 loc) · 2.43 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
{
"name": "remediations-consumer",
"version": "1.1.0",
"description": "Consumer of platform messages for Remediations",
"license": "Apache-2.0",
"main": "app.js",
"repository": {
"type": "git",
"url": "[email protected]:RedHatInsights/remediations-consumer.git"
},
"scripts": {
"clean": "rm -r dist",
"compile": "tsc",
"coverage": "tsc && npm run db:ims && NODE_ENV=test LOG_LEVEL=fatal jest -i --coverage",
"db:ims": "NODE_ENV=test npm-run-all db:init db:migrate db:seed",
"db:init": "DB_DATABASE=postgres node dist/test/init.js",
"db:migrate": "knex migrate:latest",
"db:seed": "knex seed:run",
"lint": "eslint src/**/*.ts test/**/*.js",
"start": "tsc && LOG_PRETTY=true node dist/src/app.js",
"test": "tsc && npm run db:ims && NODE_ENV=test LOG_LEVEL=fatal jest -i",
"test:ci": "npm run db:ims && NODE_ENV=test LOG_LEVEL=fatal jest -i --coverage",
"verify": "npm-run-all lint coverage"
},
"author": "Jozef Hartinger",
"dependencies": {
"@hapi/joi": "^15.1.1",
"bluebird": "^3.7.2",
"convict": "^6.2.4",
"convict-format-with-validator": "^6.2.0",
"kafkajs": "^2.2.4",
"knex": "^2.4.0",
"lodash": "^4.17.21",
"npm-run-all": "^4.1.5",
"pg": "^8.8.0",
"pino": "^5.17.0",
"pino-cloudwatch": "^0.7.0",
"pino-multi-stream": "^5.0.0",
"pino-pretty": "^3.6.1",
"prom-client": "^11.5.3",
"tmp": "^0.2.1",
"uuid": "^7.0.3",
"ws": "^8.18.0"
},
"devDependencies": {
"@tsconfig/node16": "^1.0.3",
"@types/bluebird": "^3.5.37",
"@types/convict-format-with-validator": "^6.0.2",
"@types/hapi__joi": "^15.0.4",
"@types/jest": "^24.9.1",
"@types/lodash": "^4.14.149",
"@types/node": "^12.12.34",
"@types/pino": "^5.17.0",
"@types/pino-multi-stream": "^3.1.2",
"@types/sinon": "^7.5.2",
"@types/supertest": "^2.0.8",
"@types/tmp": "^0.2.0",
"@types/uuid": "^7.0.2",
"@typescript-eslint/eslint-plugin": "^5.54",
"@typescript-eslint/parser": "^5.54",
"clean-modules": "^3.1.1",
"eslint": "^8.35",
"eslint-plugin-jest": "^23.0.0",
"eslint-plugin-security": "^1.4.0",
"jest": "^29.7.0",
"jest-junit": "^14.0.1",
"should": "^13.2.3",
"sinon": "^19.0.2",
"supertest": "^4.0.2",
"ts-jest": "^29.0.3",
"typescript": "^4.8.4"
},
"overrides": {
"pino-cloudwatch": {
"async": "^3.2.6"
},
"npm-run-all": {
"cross-spawn": "^7.0.6"
}
}
}