-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
65 lines (65 loc) · 1.42 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
{
"name": "clinq-bridge-zammad",
"private": true,
"description": "CLINQ-Bridge for Zammad contacts",
"main": "dist/index.js",
"repository": "[email protected]:sipgate/clinq-bridge-zammad.git",
"contributors": [
{
"name": "Benjamin Kluck",
"email": "[email protected]"
},
{
"name": "Felix Gladisch",
"email": "[email protected]"
},
{
"name": "Michael Rotmanov",
"email": "[email protected]"
}
],
"license": "Apache-2.0",
"scripts": {
"postinstall": "tsc",
"start": "ts-node-dev src/index.ts",
"lint": "tslint --project tsconfig.json"
},
"dependencies": {
"@clinq/bridge": "^11.2.0",
"@types/express": "^4.17.0",
"@types/node": "^12.0.7",
"axios": "^0.19.2",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"http-proxy": "^1.18.0",
"pem": "^1.14.4",
"typescript": "^3.5.1"
},
"devDependencies": {
"@types/http-proxy": "^1.17.4",
"@types/pem": "^1.9.5",
"husky": "^2.4.0",
"lint-staged": "^8.2.0",
"prettier": "^1.18.2",
"ts-node-dev": "^1.0.0-pre.39",
"tslint": "^5.17.0",
"tslint-config-prettier": "^1.17.0",
"tslint-eslint-rules": "^5.4.0"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.ts": [
"prettier --write",
"tslint",
"git add"
],
"*.{json,yml,md}": [
"prettier --write",
"git add"
]
}
}