forked from OfficeDev/Microsoft-Teams-Samples
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
34 lines (34 loc) · 887 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": "graph-bulk-meetings-nodejs",
"version": "1.0.0",
"main": "index.js",
"scripts": {
"dev:teamsfx": "npm run dev",
"dev": "nodemon --inspect=9239 --signal SIGINT ./server.js",
"start": "node ./server.js",
"test": "echo \"Error: no test specified\" && exit 1",
"build": "node build.js"
},
"author": "",
"license": "ISC",
"description": "",
"dependencies": {
"@azure/identity": "^2.1.0",
"@azure/msal-node": "^1.4.0",
"@microsoft/microsoft-graph-client": "^2.2.1",
"@microsoft/teams-js": "^1.10.0",
"axios": "^0.21.1",
"body-parser": "^1.19.0",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"ejs": "^3.1.6",
"express": "^4.17.1",
"node-fetch": "^2.6.1",
"nodemon": "^2.0.7",
"parallel-each": "^1.1.7",
"q": "^1.5.1",
"request": "^2.88.2",
"uuid": "^9.0.0",
"esbuild": "^0.18.1"
}
}