forked from microsoft/BotBuilder-Samples
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
28 lines (28 loc) · 813 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
{
"name": "suggested-actions",
"version": "1.0.0",
"description": "Bot Builder v4 SuggestedActions sample",
"main": "index.js",
"scripts": {
"start": "node index.js",
"test": "echo \"Error: no test specified\" && exit 1",
"watch": "nodemon index.js"
},
"author": "Microsoft",
"license": "MIT",
"dependencies": {
"botbuilder": "^4.0.6",
"botframework-config": "^4.0.6",
"dotenv": "^6.0.0",
"restify": "^7.2.1"
},
"devDependencies": {
"eslint": "^5.6.0",
"eslint-config-standard": "^12.0.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-node": "^7.0.1",
"eslint-plugin-promise": "^4.0.1",
"eslint-plugin-standard": "^4.0.0",
"nodemon": "^1.18.4"
}
}