-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
96 lines (96 loc) · 2.5 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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
{
"name": "@sipgate/integration-bridge",
"version": "1.0.11",
"description": "sipgate Integration Bridge Framework",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"repository": "github:sipgate/integration-bridge",
"bugs": {
"url": "https://github.com/sipgate/integration-bridge/issues"
},
"keywords": [
"integration",
"express",
"framework"
],
"license": "UNLICENSED",
"scripts": {
"dev": "npm run build && npm link && tsc --watch",
"watch": "tsc --watch",
"prepare": "husky install",
"test": "jest",
"compile": "tsc",
"lint": "eslint '**/*.ts'",
"build": "npm test && rimraf dist && npm run compile",
"precommit": "lint-staged",
"prepublishOnly": "npm run build",
"format": "prettier --write '**/*.ts'"
},
"lint-staged": {
"*.ts": [
"prettier --write"
]
},
"jest": {
"transform": {
"^.+\\.ts?$": "ts-jest"
},
"testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.(js?|ts?)$",
"moduleFileExtensions": [
"js",
"ts",
"json",
"node"
]
},
"devDependencies": {
"@types/body-parser": "1.19.2",
"@types/compression": "1.7.2",
"@types/cookies": "^0.7.7",
"@types/cors": "2.8.13",
"@types/express": "4.17.17",
"@types/jest": "^29.4.0",
"@types/lodash": "^4.14.191",
"@types/lru-cache": "7.10.9",
"@types/node": "18.16.5",
"@types/redis": "4.0.10",
"@typescript-eslint/eslint-plugin": "^6.11.0",
"@typescript-eslint/parser": "^6.11.0",
"eslint": "^8.53.0",
"eslint-plugin-import": "^2.29.0",
"husky": "8.0.3",
"jest": "^29.4.0",
"lint-staged": "13.2.2",
"node-mocks-http": "1.12.2",
"prettier": "2.8.8",
"rimraf": "3.0.2",
"ts-jest": "^29.0.5",
"typescript": "4.9.5"
},
"dependencies": {
"@google-cloud/pubsub": "^3.7.1",
"@opentelemetry/api": "^1.7.0",
"@opentelemetry/auto-instrumentations-node": "^0.40.0",
"@opentelemetry/exporter-trace-otlp-http": "^0.45.1",
"@opentelemetry/sdk-node": "^0.45.1",
"@opentelemetry/sdk-trace-base": "^1.18.1",
"@slack/webhook": "^6.1.0",
"awesome-phonenumber": "^3.2.0",
"axios": "^1.0.0",
"body-parser": "^1.20.0",
"compression": "^1.7.4",
"cookies": "^0.8.0",
"cors": "^2.8.5",
"dotenv": "^16.0.3",
"express": "^4.18.1",
"lodash": "^4.17.21",
"lru-cache": "^7.13.1",
"moment": "^2.29.4",
"rate-limiter-flexible": "^2.3.11",
"redis": "^4.2.0",
"zod": "^3.23.8"
}
}