forked from microsoft/BotFramework-WebChat
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.25 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
{
"name": "msbotchat",
"version": "0.1.0",
"description": "sample web chat app for MS bot framework ",
"main": "built/BotChat.js",
"types": "public/botchat.d.ts",
"scripts": {
"typings": "typings install",
"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",
"minify": "webpack --optimize-minimize --optimize-dedupe",
"start": "http-server -p 8000",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git://[email protected]/billba/botchat.git"
},
"author": "Bill Barnes",
"license": "MIT",
"dependencies": {
"core-js": "^2.4.1",
"he": "^1.1.0",
"marked": "^0.3.6",
"react": "^15.3.2",
"react-dom": "^15.3.2",
"redux": "^3.6.0"
},
"devDependencies": {
"@reactivex/rxjs": "5.0.0-beta.12",
"@types/he": "^0.5.29",
"@types/marked": "0.0.28",
"@types/react": "^0.14.37",
"@types/react-dom": "^0.14.17",
"@types/redux": "^3.5.30",
"http-server": "^0.9.0",
"npm-run-all": "^3.1.0",
"source-map-loader": "^0.1.5",
"ts-loader": "^0.8.2",
"typescript": "^2.0.8",
"webpack": "^1.13.1"
}
}