-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.13 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
{
"name": "io-labs-complex-ivr",
"version": "1.0.0",
"description": "",
"main": "src/index.ts",
"scripts": {
"start": "ts-node .",
"fix:lint": "eslint src --ext .ts,.js --fix",
"fix:format": "prettier --write .",
"prepare": "husky install"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/sipgate-io/io-labs-complex-ivr.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/sipgate-io/io-labs-complex-ivr/issues"
},
"homepage": "https://github.com/sipgate-io/io-labs-complex-ivr#readme",
"devDependencies": {
"@types/node": "^16.11.6",
"@typescript-eslint/eslint-plugin": "^5.3.1",
"@typescript-eslint/parser": "^5.3.1",
"eslint": "^7.32.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-plugin-import": "^2.25.2",
"husky": "^7.0.4",
"lint-staged": "^13.2.1",
"prettier": "^2.4.1",
"typescript": "^4.4.4"
},
"lint-staged": {
"*.{ts,js}": "eslint --fix",
"*.{ts,js,css,md}": "prettier --write"
},
"dependencies": {
"dotenv": "^10.0.0",
"sipgateio": "^2.5.5",
"ts-node": "^10.4.0"
}
}