-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 875 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 875 Bytes
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
{
"name": "ringcentral-bot-nodejs-demo",
"version": "1.0",
"description": "A sample app to build a RingCentral team messaging bot from scratch",
"main": "private-bot.js",
"scripts": {
"start": "node private-bot.js",
"start-private": "node private-bot.js",
"start-public": "node public-bot.js"
},
"repository": {
"type": "git",
"url": "https://github.com/ringcentral-tutorials/ringcentral-bot-nodejs-demo.git"
},
"bugs": {
"url": "https://github.com/ringcentral-tutorials/ringcentral-bot-nodejs-demo/issues"
},
"keywords": [
"ringcentral",
"conversational ui",
"team chat",
"team messaging",
"add in",
"adaptive card",
"onboarding",
"chatbot",
"bot"
],
"dependencies": {
"@ringcentral/sdk": "^4.3.3",
"body-parser": ">1.18.2",
"dotenv": ">4.0.0",
"express": ">4.15.5"
}
}