forked from OfficeDev/Microsoft-Teams-Samples
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
31 lines (31 loc) · 1.08 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
{
"name": "teams-token-app",
"version": "1.0.0",
"description": "Microsoft Teams conversation bot quickstart",
"main": "server/index.js",
"scripts": {
"dev:teamsfx": "npm run dev",
"dev": "nodemon --exec babel-node --inspect=9239 --signal SIGINT server/index.js",
"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 \"appManifest\\appManifest.zip\" 2> nul && powershell Compress-Archive appManifest/* appManifest/appManifest.zip"
},
"keywords": [],
"author": "Microsoft",
"license": "MIT",
"dependencies": {
"body-parser": "^1.19.0",
"botbuilder": "^4.18.0",
"cors": "^2.8.5",
"dotenv": "^8.0.0",
"express": "^4.17.1",
"html-entities": "^1.3.1"
},
"devDependencies": {
"nodemon": "^2.0.3"
}
}