-
Notifications
You must be signed in to change notification settings - Fork 24
Expand file tree
/
Copy pathpackage.json
More file actions
148 lines (148 loc) · 6 KB
/
package.json
File metadata and controls
148 lines (148 loc) · 6 KB
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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
{
"name": "@cognigy/webchat",
"version": "2.69.0",
"description": "Webchat Widget for Cognigy.AI",
"author": "Cognigy GmbH <info@cognigy.com>",
"contributors": [
"Robin Schuster <r.schuster@cognigy.com>"
],
"license": "SEE LICENSE IN LICENSE",
"main": "lib/webchat/index.js",
"scripts": {
"build": "npm run bundle",
"bundle": "npm run webchat && npm run webchat-legacy && npm run date-picker && npm run date-picker-legacy && npm run rating && npm run rating-legacy && npm run speech-input && npm run speech-input-legacy && npm run speech-output && npm run speech-output-legacy && npm run messenger && npm run messenger-legacy && npm run message-renderer && npm run adaptivecards && npm run adaptivecards-legacy && npm run attachments && npm run attachments-legacy && npm run full-screen-notification && npm run full-screen-notification-legacy",
"update-license": "node update-license.js",
"dev": "webpack-dev-server --config webpack.dev.js --host 0.0.0.0",
"message-renderer": "webpack --config webpack.message-renderer.production.js",
"adaptivecards-legacy": "webpack --config webpack.production-plugin.adaptivecards.legacy.js",
"adaptivecards": "webpack --config webpack.production-plugin.adaptivecards.js",
"date-picker-legacy": "webpack --config webpack.production-plugin.date-picker.legacy.js",
"date-picker": "webpack --config webpack.production-plugin.date-picker.js",
"full-screen-notification-legacy": "webpack --config webpack.production-plugin.full-screen-notification.legacy.js",
"full-screen-notification": "webpack --config webpack.production-plugin.full-screen-notification.js",
"messenger": "webpack --config webpack.production-plugin.messenger.js",
"messenger-legacy": "webpack --config webpack.production-plugin.messenger.legacy.js",
"rating-legacy": "webpack --config webpack.production-plugin.rating.legacy.js",
"rating": "webpack --config webpack.production-plugin.rating.js",
"rating-widget-legacy": "webpack --config webpack.production-plugin.rating-widget.legacy.js",
"rating-widget": "webpack --config webpack.production-plugin.rating-widget.js",
"speech-input-legacy": "webpack --config webpack.production-plugin.speech-input.legacy.js",
"speech-input": "webpack --config webpack.production-plugin.speech-input.js",
"speech-output-legacy": "webpack --config webpack.production-plugin.speech-output.legacy.js",
"speech-output": "webpack --config webpack.production-plugin.speech-output.js",
"webchat-legacy": "webpack --config webpack.production.legacy.js",
"webchat": "webpack --config webpack.production.js",
"attachments-legacy": "webpack --config webpack.production-plugin.attachments.legacy.js",
"attachments": "webpack --config webpack.production-plugin.attachments.js",
"cypress:open": "cypress open",
"cypress:serve": "http-server -a localhost -p 8787 dist/",
"cypress:run": "cypress run",
"test:cypress": "run-p -r cypress:serve cypress:run",
"test:es6-legacy": "es-check es6 ./dist/*.legacy.js",
"test": "npm run test:es6-legacy && npm run test:cypress",
"pretest": "npm run bundle",
"prettier:check": "prettier --check --config .prettierrc.json src/",
"tsc:check": "tsc --noEmit",
"lint": "eslint src/"
},
"dependencies": {
"@braintree/sanitize-url": "^6.0.0",
"@cognigy/socket-client": "^4.9.2",
"@emotion/cache": "^10.0.29",
"@emotion/react": "^11.7.1",
"@emotion/styled": "^11.6.0",
"adaptivecards": "^2.10.0",
"axios": "^1.15.0",
"dompurify": "3.3.2",
"flatpickr": "4.6.3",
"immutable": "^4.3.8",
"lodash": "^4.18.1",
"memoize-one": "^6.0.0",
"moment": "^2.29.4",
"path-parse": "^1.0.7",
"react": "^17.0.2",
"react-animate-height": "^2.0.23",
"react-dom": "^17.0.2",
"react-player": "^2.9.0",
"react-redux": "^7.2.6",
"react-responsive-carousel": "^3.2.22",
"react-textarea-autosize": "^8.3.3",
"redux": "^4.0.4",
"remarkable": "^2.0.1",
"styled-jss": "^2.2.3",
"stylis": "3.5.4",
"stylis-rtl": "^1.0.1",
"tinycolor2": "^1.4.2",
"uifx": "^2.0.7"
},
"devDependencies": {
"@babel/cli": "^7.16.7",
"@babel/core": "^7.16.7",
"@babel/plugin-proposal-class-properties": "^7.16.7",
"@babel/plugin-proposal-nullish-coalescing-operator": "^7.16.7",
"@babel/plugin-proposal-object-rest-spread": "^7.16.7",
"@babel/plugin-proposal-optional-chaining": "^7.16.7",
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@babel/plugin-transform-object-assign": "^7.16.7",
"@babel/plugin-transform-runtime": "^7.16.7",
"@babel/preset-env": "^7.16.7",
"@babel/preset-react": "^7.16.7",
"@babel/preset-typescript": "^7.16.7",
"@babel/runtime": "^7.16.7",
"@types/dompurify": "^2.0.0",
"@types/react": "^16.9.11",
"@types/react-dom": "^16.9.4",
"@types/react-redux": "^6.0.12",
"@types/remarkable": "^2.0.3",
"@types/tinycolor2": "^1.4.3",
"@types/uuid": "^3.4.6",
"@types/whatwg-fetch": "0.0.33",
"@typescript-eslint/eslint-plugin": "^5.10.0",
"@typescript-eslint/parser": "^5.10.0",
"babel-loader": "^8.2.3",
"babel-polyfill": "^6.26.0",
"compression-webpack-plugin": "^9.2.0",
"css-loader": "^6.5.1",
"cypress": "^9.4.1",
"cypress-real-events": "^1.7.0",
"cypress-wait-until": "^1.7.2",
"es-check": "^6.1.1",
"eslint": "^8.7.0",
"eslint-plugin-react": "^7.28.0",
"http-server": "^0.13.0",
"idempotent-babel-polyfill": "^7.4.4",
"license-checker": "25.0.1",
"npm-run-all": "^4.1.5",
"prettier": "^2.5.1",
"react-svg-loader": "^3.0.3",
"redux-devtools-extension": "^2.13.8",
"style-loader": "^3.3.1",
"svg-inline-loader": "^0.8.2",
"svg-react-loader": "^0.4.6",
"terser-webpack-plugin": "^5.3.0",
"ts-loader": "^9.2.6",
"typesafe-actions": "^3.0.0",
"typescript": "^3.7.2",
"url-loader": "^4.1.1",
"url-polyfill": "^1.1.12",
"webpack": "^5.65.0",
"webpack-cli": "^4.9.1",
"webpack-dev-server": "^4.7.2",
"whatwg-fetch": "^3.6.2",
"zlib": "^1.0.5"
},
"engines": {
"node": ">=22.1.0"
},
"overrides": {
"@cypress/request": "3.0.0",
"xml2js": "0.5.0",
"svg-react-loader": {
"loader-utils": {
".": "1.4.2",
"json5": "1.0.2"
}
},
"nth-check": "2.0.1"
}
}