-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
39 lines (39 loc) · 1.35 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": "city-information-bot",
"version": "1.0.0",
"description": "Demonstrate the core capabilities of the Microsoft Bot Framework",
"author": "Generated using Microsoft Bot Builder Yeoman generator v4.2.3",
"license": "MIT",
"main": "./lib/index.js",
"scripts": {
"build": "node_modules/.bin/tsc --build",
"lint": "node_modules/.bin/tslint -c tslint.json 'src/**/*.ts'",
"postinstall": "npm run build && node ./deploymentScripts/webConfigPrep.js",
"start": "node_modules/.bin/tsc --build && node ./lib/index.js",
"test": "echo \"Error: no test specified\" && exit 1",
"watch": "node_modules/.bin/nodemon --watch ./src -e ts --exec \"npm run start\""
},
"repository": {
"type": "git",
"url": "https://github.com"
},
"dependencies": {
"@types/request": "^2.48.1",
"@types/underscore": "^1.8.8",
"botbuilder": "^4.2.0",
"botbuilder-dialogs": "^4.2.0",
"botframework-config": "^4.2.0",
"dotenv": "^6.1.0",
"replace": "^1.0.0",
"request": "^2.88.0",
"restify": "^7.2.3",
"underscore": "^1.9.0"
},
"devDependencies": {
"@types/dotenv": "6.1.0",
"@types/restify": "7.2.6",
"nodemon": "^1.18.7",
"tslint": "^5.11.0",
"typescript": "^3.1.6"
}
}