forked from microsoft/BotFramework-WebChat
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
89 lines (89 loc) · 2.88 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
{
"name": "botframework-webchat",
"version": "0.11.2",
"description": "Embeddable web chat control for the Microsoft Bot Framework",
"main": "built/BotChat.js",
"types": "built/BotChat.d.ts",
"scripts": {
"build-test": "tsc -p ./test/mock_dl && tsc -p ./test && tsc -p ./test/mock_speech",
"build-test-watch": "concurrently \"tsc -w -p ./test/mock_dl\" \"tsc -w -p ./test\"",
"build-css": "node-sass ./src/scss/ -o . && rimraf ./includes/",
"build-ac-config": "ac-scss2json ./src/scss/includes/adaptive-card-config.scss > adaptivecards-hostconfig.json",
"build-all-style": "npm run build-css && npm run build-ac-config && webpack",
"build": "npm run build-css && tsc && webpack --progress",
"watch": "npm-run-all -p -r -l tsc-watch webpack-watch",
"tsc-watch": "tsc -w",
"webpack": "webpack",
"webpack-watch": "webpack --progress --watch",
"clean": "rimraf built",
"prepublish": "tsc && npm run build-css && webpack --progress --config webpack.production.config.js",
"start": "http-server -p 8000",
"test": "concurrently \"node test/mock_dl/index.js\" \"mocha test\" ",
"mock": "node test/mock_dl/index.js"
},
"repository": {
"type": "git",
"url": "git://git@github.com/Microsoft/BotFramework-WebChat.git"
},
"author": "Microsoft Corp",
"license": "MIT",
"dependencies": {
"@types/react": "15.0.38",
"botframework-directlinejs": "0.9.11",
"core-js": "2.4.1",
"markdown-it": "8.3.1",
"microsoft-adaptivecards": "0.6.1",
"microsoft-speech-browser-sdk": "0.0.1",
"react": "15.6.1",
"react-dom": "15.6.1",
"react-redux": "5.0.5",
"redux": "3.7.2",
"redux-observable": "0.13.0",
"rxjs": "5.3.3",
"tslib": "1.7.1"
},
"devDependencies": {
"@types/body-parser": "0.0.33",
"@types/chai": "3.4.34",
"@types/chai-subset": "1.0.29",
"@types/deep-freeze": "0.0.29",
"@types/express": "4.0.35",
"@types/markdown-it": "0.0.2",
"@types/nightmare": "1.6.30",
"@types/react-dom": "0.14.23",
"@types/react-redux": "4.4.38",
"awesome-typescript-loader": "3.1.2",
"body-parser": "1.16.0",
"chai": "3.5",
"chai-subset": "1.4.0",
"concurrently": "3.1.0",
"deep-freeze": "0.0.1",
"dotenv": "4.0.0",
"expose-loader": "0.7.3",
"express": "4.14.0",
"fs-extra": "1.0.0",
"http-server": "0.9.0",
"microsoft-adaptivecards-scss-to-json": "1.2.0",
"mocha": "3.2.0",
"multer": "1.3.0",
"nightmare": "2.8.1",
"nightmare-upload": "0.1.1",
"node-sass": "4.5.0",
"nodemon": "1.11.0",
"npm-run-all": "3.1.2",
"remote": "0.2.6",
"rimraf": "2.6.1",
"source-map-loader": "0.2.1",
"typescript": "2.3",
"vo": "4.0.2",
"webpack": "2.3.3"
},
"files": [
"built/",
"adaptivecards-hostconfig.json",
"botchat-fullwindow.css",
"botchat.css",
"botchat.js",
"CognitiveServices.js"
]
}