forked from OfficeDev/Microsoft-Teams-Samples
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
29 lines (29 loc) · 1 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
{
"name": "teams-token-app",
"version": "1.0.0",
"description": "Microsoft Teams conversation bot quickstart",
"main": "server/index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "node server/index.js",
"watch": "nodemon server/index.js",
"build": "npm install && cd client && npm install && npm run build",
"server": "npm install && cd client && npm install && npm run build && cd ../ && nodemon server/index.js",
"client": "cd client && npm install && npm run start",
"manifest": "del \"appPackage\\appPackage.zip\" 2> nul && powershell Compress-Archive appPackage/* appPackage/appPackage.zip"
},
"keywords": [],
"author": "Microsoft",
"license": "MIT",
"dependencies": {
"adaptivecards": "^2.9.0",
"adaptivecards-templating": "^2.1.0",
"body-parser": "^1.19.0",
"botbuilder": "~4.7.0",
"cors": "^2.8.5",
"dotenv": "^8.0.0",
"express": "^4.17.1",
"html-entities": "^1.3.1",
"memorystorage": "^0.12.0"
}
}