-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.3 KB
/
Copy pathpackage.json
File metadata and controls
46 lines (46 loc) · 1.3 KB
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
{
"name": "node-consumer-kafka",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "node dist/src/index.js",
"dev": "node -r tsconfig-paths/register --require ts-node/register src/index.ts",
"test": "cross-env NODE_ENV=test jest --detectOpenHandles",
"lint": "eslint src --fix",
"build": "tsc -p tsconfig.prod.json && tscpaths -p tsconfig.prod.json -s . -o ./dist"
},
"keywords": [],
"author": "Ismael alves <cearaismael1997@gmail.com>",
"license": "MIT",
"devDependencies": {
"@types/cron": "^2.0.1",
"@types/jest": "^29.5.2",
"@typescript-eslint/eslint-plugin": "^8.32.1",
"@typescript-eslint/parser": "^8.32.1",
"chance": "^1.1.11",
"concurrently": "^8.2.0",
"cross-env": "^7.0.3",
"eslint": "^9.27.0",
"eslint-plugin-jest": "^28.11.0",
"ioredis-mock": "^8.9.0",
"jest": "^29.6.0",
"nock": "^13.3.1",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1",
"tsconfig-paths": "^4.2.0",
"tscpaths": "^0.0.9",
"typescript": "^5.8.3"
},
"dependencies": {
"@ismaelalves/logger": "^0.2.0",
"commander": "^11.0.0",
"dotenv": "^16.3.1",
"ioredis": "^5.6.1",
"joi": "^17.9.2",
"kosumer": "^0.1.0",
"reflect-metadata": "^0.1.13",
"table": "^6.8.1",
"tsyringe": "^4.8.0"
}
}