-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.34 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.34 KB
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
{
"name": "clinq-bridge-1sales",
"private": true,
"description": "CLINQ Bridge for 1sales",
"main": "dist/index.js",
"repository": "git@github.com:sipgate/clinq-bridge-1sales.git",
"contributors": [
{
"name": "CLINQ",
"email": "hello@clinq.com"
}
],
"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.21.1",
"dotenv": "^10.0.0",
"express": "^4.17.1",
"husky": "^7.0.1",
"jwt-decode": "^2.2.0",
"mime-db": "^1.49.0",
"simple-oauth2": "^4.2.0",
"typescript": "^4.3.5"
},
"devDependencies": {
"@types/dotenv": "^6.1.1",
"@types/express": "^4.16.1",
"@types/jwt-decode": "^2.2.1",
"@types/node": "^11.11.7",
"@types/simple-oauth2": "^2.2.1",
"@typescript-eslint/eslint-plugin": "^4.29.3",
"@typescript-eslint/parser": "^4.29.3",
"eslint": "^7.32.0",
"lint-staged": "^11.1.2",
"prettier": "^2.3.2",
"ts-node": "^10.2.0"
},
"lint-staged": {
"*.{ts}": [
"eslint --fix",
"prettier --write",
"git add"
],
"*.{json,md}": [
"prettier --write",
"git add"
]
}
}