forked from isa-group/offline-directline
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.22 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.22 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
{
"name": "offline-directline",
"version": "1.3.1",
"description": "Unofficial offline version of the Bot Framework Directline connector",
"homepage": "https://github.com/ryanvolum/offline_dl",
"main": "dist/bridge.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "tsc",
"watch": "tsc -w",
"nodewatch": "nodemon index.js",
"start": "npm run directline",
"directline": "node dist/cmdutil.js"
},
"types": "dist/bridge.d.ts",
"author": "Ryan Volum",
"license": "ISC",
"repository": {
"type": "git",
"url": "https://github.com/ryanvolum/offline_dl"
},
"dependencies": {
"body-parser": "^1.17.2",
"commander": "8.3.0",
"dotenv": "^10.0.0",
"es6-promise": "^4.1.1",
"express": "4.16.3",
"isomorphic-fetch": "2.2.1",
"moment": "2.22.2",
"redis": "^4.0.1",
"tslint": "^5.11.0",
"uuid": "^3.1.0",
"ws": "^8.0.0"
},
"devDependencies": {
"@types/dotenv": "^4.0.0",
"@types/express": "4.16.0",
"@types/isomorphic-fetch": "0.0.34",
"@types/moment": "2.13.0",
"@types/node": "14.14.31",
"@types/uuid": "3.4.3",
"typescript": "4.4.4"
},
"bin": {
"directline": "./dist/cmdutil.js"
}
}