generated from GenesysCloudBlueprints/blueprint-template
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
43 lines (43 loc) · 1.32 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": "audioconnector-server-reference-implementation",
"private": true,
"version": "1.0.0",
"description": "VoiceBot Reference Implementation for AudioConnector Servers.",
"author": "Kevin Wiegand <[email protected]>",
"main": "./dist/index.js",
"bin": "./dist/index.js",
"files": [
"dist/**/*",
"!dist/**/*.index.js"
],
"engines": {
"node": ">=18"
},
"scripts": {
"start": "ts-node ./src/index.ts",
"clean": "rimraf ./dist/",
"prebuild": "node -p \"'export const LIB_VERSION = ' + JSON.stringify(require('./package.json').version) + ';'\" > src/__version.ts",
"build": "npm run clean && tsc",
"test": "echo \"Error: no test specified\" && exit 1"
},
"devDependencies": {
"@types/express": "^4.17.17",
"@types/lodash": "^4.14.178",
"@types/node": "^18.9.1",
"@types/uuid": "^9.0.1",
"@types/websocket": "^1.0.5",
"@types/ws": "^8.5.4",
"rimraf": "^3.0.2",
"ts-node": "^10.4.0",
"typescript": "^4.5.4"
},
"dependencies": {
"dotenv": "^16.0.3",
"express": "^4.18.2",
"iso8601-duration": "^1.3.0",
"lodash": "^4.17.21",
"uuid": "^9.0.0",
"websocket": "^1.0.34",
"ws": "^8.13.0"
}
}