forked from microsoft/BotFramework-WebChat
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.49 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
48
49
50
51
52
53
54
55
{
"name": "botframework-webchat",
"version": "0.4.3",
"description": "Embeddable web chat control for the Microsoft Bot Framework",
"main": "built/BotChat.js",
"types": "botchat.d.ts",
"scripts": {
"build": "tsc && webpack",
"watch": "npm-run-all -p -r -l tsc-watch webpack-watch",
"tsc-watch": "tsc -w",
"webpack-watch": "webpack -w",
"clean": "rm -rf built",
"publish": "tsc && webpack --config webpack.production.config.js",
"start": "http-server -p 8000",
"test": "mocha test"
},
"repository": {
"type": "git",
"url": "git://git@github.com/Microsoft/BotFramework-WebChat.git"
},
"author": "Microsoft Corp",
"license": "MIT",
"dependencies": {
"core-js": "^2.4.1",
"he": "^1.1.0",
"marked": "^0.3.6",
"react": "^15.4.1",
"react-dom": "^15.4.1",
"react-redux": "^5.0.1",
"redux": "^3.6.0",
"redux-observable": "^0.12.2",
"rxjs": "^5.0.3",
"tslib": "^1.5.0"
},
"devDependencies": {
"@types/chai": "^3.4.34",
"@types/chai-subset": "^1.0.29",
"@types/deep-freeze": "0.0.29",
"@types/he": "^0.5.29",
"@types/marked": "0.0.28",
"@types/react": "^0.14.55",
"@types/react-dom": "^0.14.20",
"chai": "^3.5.0",
"chai-subset": "^1.4.0",
"deep-freeze": "0.0.1",
"fs-extra": "^1.0.0",
"http-server": "^0.9.0",
"mocha": "^3.2.0",
"npm-run-all": "^3.1.2",
"source-map-loader": "^0.1.5",
"ts-loader": "^1.3.3",
"typescript": "^2.1.5",
"webpack": "^1.14.0"
}
}