-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
39 lines (39 loc) · 1.36 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
{
"name": "botd",
"version": "1.0.0",
"description": "Demonstrate the core capabilities of the Microsoft Bot Framework",
"author": "Generated using Microsoft Bot Builder Yeoman generator v4.9.0",
"license": "MIT",
"main": "./lib/index.js",
"scripts": {
"build": "tsc --build",
"lint": "tslint -c tslint.json 'src/**/*.ts'",
"cp-card": "mkdir -p ./lib/cards/ && cp ./src/cards/*.json ./lib/cards/",
"postinstall": "npm run build && node ./deploymentScripts/webConfigPrep.js",
"start": "tsc --build && npm run cp-card && node ./lib/index.js",
"start-worker": "tsc --build && node ./lib/workers/demoWorker.js",
"test": "echo \"Error: no test specified\" && exit 1",
"watch": "nodemon --watch ./src -e ts --exec \"npm run start\""
},
"repository": {
"type": "git",
"url": "https://github.com"
},
"dependencies": {
"@microsoft/recognizers-text-suite": "^1.3.0",
"botbuilder": "~4.9.0",
"dotenv": "^8.2.0",
"lodash": "^4.17.20",
"redis": "^3.0.2",
"replace": "~1.1.1",
"restify": "~8.5.1",
"serialize-instance": "^1.0.5",
"xstate": "^4.13.0"
},
"devDependencies": {
"@types/restify": "8.4.2",
"nodemon": "~2.0.4",
"tslint": "~6.1.2",
"typescript": "~3.9.2"
}
}