-
Notifications
You must be signed in to change notification settings - Fork 18
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 2.05 KB
/
package.json
File metadata and controls
71 lines (71 loc) · 2.05 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
{
"name": "scv-demo-connector",
"version": "1.0.2",
"description": "Service Cloud Voice Demo Connector",
"private": false,
"scripts": {
"test": "gulp lint && gulp test",
"build": "webpack --mode production",
"client": "webpack-dev-server --https --cert ca/cert.pem --key ca/cert.key",
"server": "nodemon --experimental-modules ./src/server/server.mjs",
"start": "concurrently \"npm run client\" \"npm run server\"",
"lint": "gulp lint",
"bundle": "gulp bundle",
"dev": "gulp dev",
"jsdoc": "jsdoc -d ./docs ./src/main/*.js README.md"
},
"repository": {
"type": "git",
"url": "git+https://github.com/salesforce/demo-scv-connector.git"
},
"author": "Salesforce Service Cloud Voice",
"license": "BSD-3-Clause",
"devDependencies": {
"@babel/core": "^7.7.7",
"@babel/plugin-proposal-class-properties": "^7.7.4",
"@babel/plugin-transform-modules-commonjs": "^7.15.4",
"@babel/plugin-transform-runtime": "^7.11.5",
"@babel/preset-env": "^7.7.7",
"@babel/preset-react": "^7.7.4",
"@babel/register": "^7.7.7",
"babel-loader": "^8.0.6",
"concurrently": "^5.3.0",
"eslint": "^7.3.0",
"eslint-plugin-react": "^7.20.0",
"gulp": "^4.0.2",
"gulp-eslint": "^2.0.0",
"gulp-jest": "^4.0.3",
"gulp-replace": "^1.0.0",
"gulp-replace-name": "^1.0.1",
"gulp-shell": "^0.5.2",
"jest-cli": "^24.9.0",
"jest-html-reporter": "3.2.0",
"jsdoc": "^3.6.3",
"pre-commit": "^1.1.3",
"webpack-cli": "^3.3.10",
"webpack-dev-server": "^3.10.1",
"webpack-stream": "^5.2.1",
"yargs": "^17.3.1"
},
"dependencies": {
"@babel/runtime": "^7.11.2",
"@salesforce/scv-connector-base": "^3.6.0",
"axios": "^0.21.1",
"custom-env": "^2.0.1",
"express": "^4.17.1",
"jsonwebtoken": "^8.5.1",
"nodemon": "^2.0.4",
"socket.io": "4.2.0",
"socket.io-client": "4.2.0"
},
"jest": {
"coverageThreshold": {
"global": {
"branches": 96,
"functions": 92,
"lines": 97,
"statements": 98
}
}
}
}