forked from OfficeDev/Microsoft-Teams-Samples
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.38 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
40
41
42
43
44
45
46
{
"name": "msteams-nodejs-hello-world",
"version": "1.0.0",
"description": "Microsoft Teams Hello World sample app written in ES6 with Bot Framework v4 SDK",
"scripts": {
"dev:teamsfx": "npm run dev",
"dev": "nodemon --exec babel-node --inspect=9239 --signal SIGINT src/app.js",
"start": "nodemon --exec babel-node src/app.js",
"test": "echo \"Error: no test specified\" && exit 1",
"build": "node build.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/OfficeDev/msteams-samples-hello-world-nodejs.git"
},
"author": "Microsoft Corp.",
"license": "MIT",
"bugs": {
"url": "https://github.com/OfficeDev/msteams-samples-hello-world-nodejs/issues"
},
"homepage": "https://docs.microsoft.com/en-us/microsoftteams/platform/get-started/get-started-nodejs",
"dependencies": {
"@babel/polyfill": "^7.12.1",
"botbuilder": "^4.18.0",
"config": "^1.28.1",
"core-js": "^2.6.11",
"dotenv": "^8.2.0",
"express": "^4.16.2",
"faker": "^4.1.0",
"path": "^0.12.7",
"restify": "^10.0.0",
"send": "^0.18.0"
},
"devDependencies": {
"@babel/cli": "^7.8.4",
"@babel/core": "^7.9.6",
"@babel/node": "^7.8.7",
"@babel/preset-env": "^7.9.6",
"@babel/register": "^7.9.0",
"del": "^5.1.0",
"gulp": "^3.9.1",
"gulp-zip": "^5.0.1",
"nodemon": "^2.0.3",
"esbuild": "^0.18.1"
}
}