-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
54 lines (54 loc) · 1.56 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
{
"name": "kafkajs-canary-app",
"version": "0.1.0",
"description": "",
"main": "build/index.js",
"scripts": {
"clean": "rm -rf build/",
"build": "tsc -p tsconfig.build.json",
"start": "node 'build/index.js'",
"start:dev": "tsc-watch -p tsconfig.build.json --onSuccess 'node build/index.js'",
"test": "jest",
"lint": "eslint '*/**/*.ts'",
"format": "prettier --write '*/**/*.ts'",
"prebuild": "npm run clean",
"prestart": "npm run build",
"prestart:dev": "npm run clean"
},
"engines": {
"node": ">=12.18.2"
},
"repository": {
"type": "git",
"url": "git+https://github.com/kafkajs/canary-app.git"
},
"author": "Tommy Brunn <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/kafkajs/canary-app/issues"
},
"homepage": "https://github.com/kafkajs/canary-app#readme",
"devDependencies": {
"@types/config": "0.0.36",
"@typescript-eslint/eslint-plugin": "^3.9.1",
"@typescript-eslint/parser": "^3.9.1",
"eslint": "^7.7.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-prettier": "^3.1.4",
"jest": "^26.4.0",
"prettier": "^2.0.5",
"ts-jest": "^26.2.0",
"ts-node": "^8.10.2",
"tsc-watch": "^4.2.9",
"typescript": "^3.9.7"
},
"dependencies": {
"@sentry/integrations": "^5.21.1",
"@sentry/node": "^5.20.1",
"cloudwatch-metrics": "github:nevon/cloudwatch-metrics#clear-summary-on-shutdown",
"config": "^3.3.1",
"kafkajs": "^1.16.0-beta.12",
"winston": "^3.3.3",
"winston-console-format": "^1.0.8"
}
}