forked from OfficeDev/Microsoft-Teams-Samples
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.61 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
47
48
49
50
51
52
53
{
"name": "teams-bot",
"version": "1.0.0",
"description": "Bot Builder v4 Bot Teams sample",
"author": "Microsoft",
"license": "MIT",
"main": "server/index.js",
"scripts": {
"dev:teamsfx": "npm run start",
"start": "node server/index.js",
"watch": "nodemon server/index.js",
"build": "node build.js",
"lint": "eslint .",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "https://github.com/OfficeDev/Microsoft-Teams-Samples.git"
},
"dependencies": {
"@microsoft/microsoft-graph-client": "^2.2.1",
"adaptivecards": "^2.9.0",
"body-parser": "^1.19.0",
"botbuilder": "^4.22.1",
"botframework-connector": "^4.9.4",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"file-system": "^1.2.2",
"fs": "^0.0.1-security",
"http": "^0.0.1-security",
"isomorphic-fetch": "^3.0.0",
"memorystorage": "^0.12.0",
"msal": "^1.4.10",
"node-cache": "^5.1.2",
"npm-auth": "^1.1.0",
"q": "^1.5.1",
"request": "^2.88.2",
"restify": "^10.0.0",
"socket.io": "^4.0.0",
"string-format": "^2.0.0",
"url": "^0.11.0"
},
"devDependencies": {
"esbuild": "^0.18.20",
"eslint": "^7.0.0",
"eslint-config-standard": "^14.1.1",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"nodemon": "~2.0.4"
}
}