-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 837 Bytes
/
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
{
"name": "directelinenode",
"author": "Alejandro Campos Magencio",
"description": "A sample console app to talk to a bot connected with Bot Service via DirectLine",
"version": "1.0.0",
"license": "MIT",
"scripts": {
"start": "node ./lib/app.js",
"postinstall": "tsc",
"build": "tsc",
"clean": "rimraf ./lib/*",
"startdev": "nodemon",
"lint": "tslint *.ts -t verbose"
},
"dependencies": {
"axios": "^0.18.0",
"botframework-directlinejs": "^0.9.15",
"colors": "^1.3.1",
"nconf": "^0.10.0",
"npm": "^5.8.0",
"ts-node": "^5.0.1",
"typescript": "^2.8.1",
"ws": "^6.0.0",
"xhr2": "^0.1.4"
},
"devDependencies": {
"@types/node": "^9.6.2",
"nodemon": "^1.17.3",
"rimraf": "^2.6.2",
"tslint": "^5.9.1"
},
"engines": {
"node": "10.8.0"
}
}