-
Notifications
You must be signed in to change notification settings - Fork 20
/
Copy pathpackage.json
34 lines (34 loc) · 1009 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
{
"name": "echobot",
"version": "1.0.0",
"description": "Bot Builder v4 echo bot sample",
"author": "Microsoft",
"license": "MIT",
"main": "./lib/index.js",
"scripts": {
"build": "tsc --build",
"lint": "tslint -c tslint.json 'src/**/*.ts'",
"postinstall": "npm run build && node ./deploymentScripts/webConfigPrep.js",
"start": "tsc --build && node ./lib/index.js",
"test": "echo \"No test specified\"",
"watch": "nodemon --watch ./src -e ts --exec \"npm run start\""
},
"repository": {
"type": "git",
"url": "https://github.com"
},
"dependencies": {
"botbuilder": "~4.21.0",
"dotenv": "^8.2.0",
"replace": "^1.2.0",
"restify": "~10.0.0"
},
"devDependencies": {
"@types/dotenv": "6.1.1",
"@types/node": "^18.18.2",
"@types/restify": "8.5.9",
"nodemon": "~2.0.4",
"tslint": "~6.1.2",
"typescript": "~4.3.2"
}
}