forked from microsoft/BotBuilder-Samples
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.57 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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
{
"name": "browser-echo",
"version": "1.0.0",
"description": "BotBuilder v4 echo bot using botframework-webchat",
"author": "Microsoft",
"license": "MIT",
"main": "app.js",
"scripts": {
"build": "webpack",
"start": "webpack-dev-server",
"lint": "eslint .",
"test": "echo \"Error: no test specified\" && exit 1"
},
"dependencies": {
"@babel/runtime": "^7.1.5",
"botbuilder-core": "^4.2.0",
"botframework-directlinejs": "~0.11.2",
"botframework-webchat": "4.2.0",
"core-js": "^3.0.1"
},
"devDependencies": {
"@babel/cli": "^7.1.0",
"@babel/core": "^7.1.0",
"@babel/plugin-proposal-class-properties": "^7.1.0",
"@babel/plugin-proposal-object-rest-spread": "^7.0.0",
"@babel/plugin-transform-runtime": "^7.1.0",
"@babel/plugin-transform-react-jsx": "7.3.0",
"@babel/preset-typescript": "7.3.3",
"@babel/preset-env": "^7.1.0",
"@babel/runtime": "^7.2.0",
"babel-runtime": "^6.26.0",
"babel-loader": "^8.0.4",
"clean-webpack-plugin": "^1.0.0",
"copy-webpack-plugin": "^4.3.1",
"css-loader": "^1.0.1",
"eslint": "^5.6.0",
"eslint-config-standard": "^12.0.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-node": "^8.0.0",
"eslint-plugin-promise": "^4.0.1",
"eslint-plugin-standard": "^4.0.0",
"style-loader": "^0.23.1",
"webpack": "^4.27.0",
"webpack-cli": "^3.1.2",
"webpack-dev-server": "^3.1.11"
}
}