forked from OfficeDev/Microsoft-Teams-Samples
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 1.25 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
{
"name": "msteams-nodejs-hello-world",
"version": "1.0.0",
"description": "Microsoft Teams Node.js Hello World App. Start here to build your first app on the Teams platform.",
"scripts": {
"start": "node src/app.js",
"watch": "nodemon src/app.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"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": {
"@microsoft/microsoft-graph-client": "^3.0.4",
"@microsoft/teams-js": "^2.5.0",
"adaptivecards-templating": "^2.3.1",
"body-parser": "^1.19.0",
"botbuilder": "^4.18.0",
"config": "^3.3.8",
"ejs": "^3.1.6",
"express": "^4.17.1",
"faker": "^4.1.0",
"fs": "^0.0.1-security",
"isomorphic-fetch": "^3.0.0",
"node-fetch": "^2.1.2",
"nodemon": "^2.0.7",
"pug": "^3.0.2",
"restify": "^8.5.1"
},
"devDependencies": {
"del": "^3.0.0",
"gulp": "^3.9.1",
"gulp-zip": "^4.0.0"
}
}