-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
81 lines (81 loc) · 2.4 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
{
"name": "softphone-vendor-headsets",
"version": "2.5.5",
"author": "Genesys",
"license": "MIT",
"cjs": "dist/cjs/src/library/index.js",
"module": "dist/es/src/library/index.js",
"main": "dist/cjs/src/library/index.js",
"web": "dist/softphone-vendor-headsets.js",
"typings": "dist/es/src/library/index.d.ts",
"files": [
"dist"
],
"repository": {
"url": "https://github.com/purecloudlabs/softphone-vendor-headsets",
"type": ""
},
"publishConfig": {
"registry": "https://registry.npmjs.org"
},
"scripts": {
"install:all": "npm ci; cd react-app; npm install; cd -",
"build": "npm run build:react && npm run build:src && npm run build:es && npm run build:module",
"build:react": "cd react-app; yarn build",
"build:src": "tsc -p .",
"build:es": "tsc -p . --outDir ./dist/es --target es2015 --module es2015",
"build:module": "webpack --mode production",
"compile:module": "tsc -p ./react-app/tsconfig.json",
"test": "cd react-app; npm run test; cd -",
"test:watch": "cd react-app; npm run test:watch; cd -",
"lint": "eslint -c .eslintrc.json ./react-app/src --ext .ts,.tsx",
"lint:fix": "npm run lint -- --fix"
},
"dependencies": {
"@gnaudio/jabra-js": "^4.2.1",
"@vbet/webhid-sdk": "^1.4.0",
"browserama": "^3.2.0",
"fetch-jsonp": "^1.2.1",
"rxjs": "^7.4.0",
"strict-event-emitter-types": "^2.0.0",
"uuid": "^9.0.1",
"whatwg-fetch": "^3.6.2",
"zone.js": "~0.10.2"
},
"devDependencies": {
"@babel/core": "^7.15.5",
"@babel/plugin-proposal-class-properties": "^7.14.5",
"@babel/preset-env": "^7.15.6",
"@babel/preset-typescript": "^7.15.0",
"@types/jest": "^27.5.0",
"@types/lodash": "^4.14.168",
"@types/node": "^12.12.37",
"@types/uuid": "^9.0.7",
"@typescript-eslint/eslint-plugin": "^4.31.1",
"@typescript-eslint/parser": "^4.31.1",
"babel-loader": "^8.1.0",
"cors": "^2.8.5",
"eslint": "^7.32.0",
"express": "^4.17.1",
"http-errors": "^1.8.0",
"husky": "^4.0.10",
"jest-fetch-mock": "^3.0.3",
"morgan": "^1.9.0",
"ts-jest": "^29.1.1",
"ts-node": "~7.0.0",
"tslib": "^2.3.1",
"typescript": "^4.1.2",
"webpack": "^4.44.2",
"webpack-cli": "^4.9.1",
"wildstring": "^1.0.9"
},
"husky": {
"hooks": {}
},
"prettier": {
"printWidth": 100,
"semi": true,
"singleQuote": true,
"trailingComma": "es5"
}
}