-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.3 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.3 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
{
"name": "clinq-bridge-csv",
"private": true,
"description": "CLINQ Bridge for CSV data",
"main": "dist/index.js",
"repository": "git@github.com:sipgate/clinq-bridge-csv.git",
"author": "CLINQ hello@clinq.com",
"license": "Apache-2.0",
"scripts": {
"prepare": "husky install",
"precommit": "lint-staged",
"start": "ts-node-dev --respawn src/index.ts",
"test": "jest",
"build": "tsc",
"format": "prettier --write .",
"lint": "eslint 'src/**/*.ts' --fix"
},
"dependencies": {
"@clinq/bridge": "^11.3.1",
"axios": "^0.19.2",
"csvtojson": "^2.0.10",
"eol": "^0.9.1",
"google-libphonenumber": "^3.2.8",
"husky": "^7.0.2"
},
"devDependencies": {
"@types/express": "^4.17.4",
"@types/google-libphonenumber": "^7.4.17",
"@types/jest": "^25.2.1",
"@types/node": "^13.11.0",
"@typescript-eslint/eslint-plugin": "^4.29.3",
"@typescript-eslint/parser": "^4.29.3",
"eslint": "^7.32.0",
"jest": "^25.2.7",
"lint-staged": "^11.1.2",
"prettier": "^2.3.2",
"ts-jest": "^25.3.1",
"ts-node-dev": "^1.1.8",
"typescript": "^3.8.3"
},
"lint-staged": {
"*.ts": [
"eslint --fix",
"prettier --write",
"git add"
],
"*.{json,js,yml,md}": [
"prettier --write",
"git add"
]
}
}