forked from leachiM2k/clinq-bridge-zoho
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
62 lines (62 loc) · 1.43 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
{
"name": "clinq-bridge-zoho",
"private": true,
"description": "CLINQ-Bridge for ZOHO CRM Contacts",
"main": "dist/index.js",
"repository": "[email protected]:sipgate/clinq-bridge-zoho.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": {
"prepare": "husky install",
"precommit": "lint-staged",
"build": "tsc",
"start": "ts-node src/index.ts",
"format": "prettier --write .",
"lint": "eslint 'src/**/*.ts' --fix"
},
"dependencies": {
"@clinq/bridge": "^11.3.1",
"axios": "^0.19.2",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"humanparser": "^1.11.0",
"husky": "^7.0.2"
},
"devDependencies": {
"@types/express": "^4.17.0",
"@types/humanparser": "^1.1.1",
"@types/node": "^12.0.7",
"@types/request": "^2.48.4",
"@typescript-eslint/eslint-plugin": "^4.29.3",
"@typescript-eslint/parser": "^4.29.3",
"eslint": "^7.32.0",
"lint-staged": "^8.2.0",
"prettier": "^2.3.2",
"ts-node": "^10.2.1",
"typescript": "^3.8.3"
},
"lint-staged": {
"*.ts": [
"eslint --fix",
"prettier --write",
"git add"
],
"*.{json,yml,md}": [
"prettier --write",
"git add"
]
}
}