forked from tazama-lf/event-director
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
78 lines (78 loc) · 2.19 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
{
"name": "channel-router-setup-processor",
"version": "1.2.0",
"description": "predicate-builder-service",
"main": "build/index.js",
"types": "build/index.d.ts",
"scripts": {
"dev": "nodemon -r dotenv/config",
"build": "tsc --project tsconfig.json",
"start": "node -r dotenv/config build/index.js",
"cleanup": "rm -rf dist template jest.config.js jest.config.js.map node_modules",
"fix": "npm run fix:prettier && npm run fix:eslint",
"fix:eslint": "eslint --fix \"**/*.ts\"",
"fix:prettier": "prettier --write \"**/*.ts\"",
"lint": "npm run lint:eslint && npm run lint:prettier",
"lint:eslint": "eslint \"**/*.ts\"",
"lint:prettier": "prettier --check \"**/*.ts\"",
"prepare": "husky install",
"test": "jest --config=jest.config.ts --passWithNoTests --forceExit",
"test:watch": "jest --config=jest.config.ts --watch"
},
"keywords": [],
"contributors": [
{
"name": "Johan Foley"
},
{
"name": "Theophilus Okwugwuni"
},
{
"name": "Uche Akogwu"
},
{
"name": "Jean-Pierre Nell"
}
],
"license": "ISC",
"dependencies": {
"@frmscoe/frms-coe-lib": "^2.2.4",
"@frmscoe/frms-coe-startup-lib": "^2.0.1",
"@log4js-node/logstash-http": "^1.1.0",
"dotenv": "^16.3.1",
"log4js": "^6.9.1",
"node-cache": "^5.1.2",
"tslib": "^2.6.0"
},
"devDependencies": {
"@types/async": "^3.2.20",
"@types/axios": "^0.14.0",
"@types/express": "^4.17.17",
"@types/jest": "^29.5.2",
"@types/node-fetch": "^2.6.4",
"@typescript-eslint/eslint-plugin": "^6.18.1",
"@typescript-eslint/parser": "^6.18.0",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-config-standard-with-typescript": "^43.0.0",
"eslint-plugin-n": "^16.6.2",
"eslint-plugin-prettier": "^5.1.2",
"husky": "8.0.3",
"ioredis-mock": "^8.8.1",
"jest": "^29.5.0",
"lint-staged": "^15.2.0",
"nodemon": "^3.0.2",
"prettier": "^3.1.1",
"replace": "1.2.2",
"rimraf": "^5.0.1",
"ts-jest": "^29.1.0",
"ts-node": "^10.9.2",
"typescript": "^5.3.3"
},
"lint-staged": {
"*.{js,ts}": [
"eslint --fix",
"prettier --write"
]
}
}