-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
80 lines (80 loc) · 2.24 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
{
"name": "node-kafka-alerts",
"version": "1.0.0",
"description": "",
"main": "dist/index.js",
"scripts": {
"start:dist": "node ./dist/index.js",
"start": "node --inspect=0.0.0.0:9229 -r ts-node/register ./src/index.ts",
"start:watch": "nodemon",
"start:dev": "ts-node src/index.ts",
"pm2": "pm2 start processes.json --no-daemon",
"build": "tsc",
"test": "mocha -r ts-node/register src/**/*.test.ts",
"coverage": "nyc -r lcov -e .ts -x \"*.test.ts\" npm run test",
"prettier:check": "prettier --check ./src",
"prettier:format": "prettier --write ./src",
"eslint": "eslint ./src"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Dev-Force/node-kafka-alerts.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/Dev-Force/node-kafka-alerts/issues"
},
"homepage": "https://github.com/Dev-Force/node-kafka-alerts#readme",
"devDependencies": {
"@types/chai": "^4.2.12",
"@types/config": "0.0.36",
"@types/cron": "^1.7.2",
"@types/glob": "^7.1.3",
"@types/kafka-node": "^3.0.0",
"@types/mocha": "^8.0.1",
"@types/node": "^14.6.4",
"@types/pino": "^6.3.4",
"@types/uuid": "^8.3.0",
"@typescript-eslint/eslint-plugin": "^3.8.0",
"@typescript-eslint/parser": "^3.8.0",
"chai": "^4.2.0",
"eslint": "^7.6.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-prettier": "^3.1.4",
"husky": "^4.2.5",
"mocha": "^8.1.1",
"nodemon": "^2.0.4",
"nyc": "^15.1.0",
"pino-pretty": "^4.3.0",
"pm2": "^4.4.1",
"prettier": "^2.0.5",
"ts-node": "^8.10.2",
"typescript": "^3.9.7"
},
"dependencies": {
"@sendgrid/mail": "^7.2.5",
"@types/express": "^4.17.7",
"body-parser": "^1.19.0",
"config": "^3.3.2",
"cron": "^1.8.2",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"glob": "^7.1.6",
"handlebars": "^4.7.6",
"inversify": "^5.0.5",
"kafka-node": "^5.0.0",
"kafkajs": "^1.12.0",
"knex": "^0.21.12",
"pg": "^8.5.1",
"pino": "^6.8.0",
"reflect-metadata": "^0.1.13",
"uuid": "^8.3.1"
},
"husky": {
"hooks": {
"pre-commit": "npm run prettier:check && npm run eslint"
}
}
}