-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1.55 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
{
"name": "kafka-loan-broker",
"private": true,
"scripts": {
"build": "npm run lint && tsc",
"lint": "npm run prettier:check && eslint src",
"prettier:check": "prettier --check src",
"prettier:write": "prettier --write src",
"start": "concurrently npm:start:web npm:start:credit-score npm:start:capital-one npm:start:bank-of-america npm:start:chase npm:start:wells-fargo",
"start:web": "node -r dotenv/config dist/web/server.js",
"start:credit-score": "node -r dotenv/config dist/credit-score-service/index.js",
"start:capital-one": "node -r dotenv/config dist/banks/capital-one.js",
"start:bank-of-america": "node -r dotenv/config dist/banks/bank-of-america.js",
"start:chase": "node -r dotenv/config dist/banks/chase.js",
"start:wells-fargo": "node -r dotenv/config dist/banks/wells-fargo.js",
"watch": "tsc -w"
},
"dependencies": {
"express": "^4.18.2",
"kafkajs": "^2.2.4",
"morgan": "^1.10.0",
"split": "^1.0.1",
"ulid": "^2.3.0",
"winston": "^3.8.2"
},
"devDependencies": {
"@types/express": "^4.17.17",
"@types/morgan": "^1.9.4",
"@types/node": "^18.16.3",
"@types/split": "^1.0.2",
"@typescript-eslint/eslint-plugin": "^5.59.1",
"concurrently": "^8.0.1",
"dotenv": "^16.0.3",
"eslint": "^8.39.0",
"eslint-config-prettier": "^8.8.0",
"eslint-config-standard-with-typescript": "^34.0.1",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-n": "^15.7.0",
"eslint-plugin-promise": "^6.1.1",
"prettier": "^2.8.8",
"typescript": "^5.0.4"
}
}