This repository has been archived by the owner on Jun 9, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.81 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
{
"name": "recent-sim-swap-processing-engine",
"version": "1.0.0",
"description": "This processing engine will check if the Payer's current Quote transaction has the same ICCID than the last transaction processed. The engine will subscribe to configured Kafka topics, connect to a Redis server to check the last transaction, then post the result to a configured Kafka topic.",
"main": "index.js",
"scripts": {
"start:dev": "nodemon",
"build": "rimraf ./build && tsc",
"start": "npm run build && node build/index.js",
"fix": "yarn fix:prettier && yarn fix:eslint",
"fix:eslint": "eslint --fix \"**/*.ts\"",
"fix:prettier": "prettier --write \"**/*.ts\"",
"lint": "yarn lint:eslint && yarn lint:prettier",
"lint:eslint": "eslint \"**/*.ts\"",
"lint:prettier": "prettier --check \"**/*.ts\""
},
"keywords": [],
"author": "johanfol",
"license": "ISC",
"devDependencies": {
"@types/node": "^14.14.25",
"@types/node-fetch": "^2.5.8",
"@typescript-eslint/eslint-plugin": "^4.15.0",
"@typescript-eslint/parser": "^4.15.0",
"eslint": "^7.19.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-config-prettier": "^7.2.0",
"eslint-config-standard": "^16.0.2",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.3.1",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^5.0.0",
"husky": "4",
"nodemon": "^2.0.6",
"prettier": "^2.2.1",
"rimraf": "^3.0.2",
"ts-node": "^9.1.1",
"typescript": "^4.1.4"
},
"dependencies": {
"@types/redis": "^2.8.28",
"dotenv": "^8.2.0",
"kafka-node": "^5.0.0",
"redis": "^3.0.2"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,ts}": "eslint --cache --fix"
}
}