-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
106 lines (106 loc) · 3.34 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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
{
"name": "@cognigy/webchat",
"version": "3.11.0",
"description": "Webchat Widget for Cognigy.AI",
"author": "Cognigy GmbH <[email protected]>",
"contributors": [
"Robin Schuster <[email protected]>"
],
"license": "SEE LICENSE IN LICENSE",
"main": "lib/webchat/index.js",
"scripts": {
"build": "webpack --config webpack.production.js",
"update-license": "node update-license.js",
"dev": "webpack-dev-server --config webpack.dev.js --host 0.0.0.0",
"cypress:open": "cypress open --e2e --browser chrome",
"cypress:open:firefox": "cypress open --e2e --browser firefox",
"cypress:serve": "http-server -a localhost -p 8787 dist/",
"cypress:run": "cypress run --browser chrome",
"cypress:run:firefox": "cypress run --browser firefox",
"test:cypress": "run-p -r cypress:serve cypress:run",
"test:cypress:firefox": "run-p -r cypress:serve cypress:run:firefox",
"test": "npm run test:cypress",
"pretest": "npm run build",
"prettier:check": "prettier --check --config .prettierrc.json src/",
"tsc:check": "tsc --noEmit",
"lint": "eslint src/",
"deps:check": "npx -y depcheck",
"deps:analyze": "npx -y webpack-bundle-analyzer stats.json dist"
},
"dependencies": {
"@braintree/sanitize-url": "^6.0.0",
"@cognigy/chat-components": "0.39.0",
"@cognigy/socket-client": "5.0.0-beta.22",
"@emotion/cache": "^10.0.29",
"@emotion/react": "^11.13.0",
"@emotion/serialize": "1.3.0",
"@emotion/styled": "^11.13.0",
"@reduxjs/toolkit": "^2.2.7",
"@types/react-transition-group": "4.4.10",
"axios": "1.7.4",
"classnames": "2.5.1",
"cypress-real-events": "^1.13.0",
"dompurify": "2.5.6",
"license-checker": "25.0.1",
"lodash": "^4.17.21",
"moment": "^2.29.4",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-hot-toast": "^2.4.1",
"react-redux": "7.2.8",
"react-responsive": "9.0.2",
"react-textarea-autosize": "8.5.3",
"react-transition-group": "4.4.5",
"redux": "^4.0.4",
"stylis-rtl": "^1.0.1",
"tinycolor2": "1.6.0",
"uifx": "^2.0.7",
"uuid": "9.0.1"
},
"devDependencies": {
"@babel/cli": "^7.16.7",
"@babel/core": "^7.16.7",
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@babel/preset-react": "^7.16.7",
"@babel/preset-typescript": "^7.16.7",
"@babel/runtime": "^7.16.7",
"@types/dom-speech-recognition": "0.0.4",
"@types/dompurify": "^2.0.0",
"@types/react": "^16.9.11",
"@types/react-dom": "^16.9.4",
"@types/react-redux": "7.1.31",
"@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",
"compression-webpack-plugin": "^9.2.0",
"css-loader": "^6.5.1",
"cypress": "^13.13.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",
"npm-run-all": "^4.1.5",
"prettier": "^2.5.1",
"redux-devtools-extension": "^2.13.8",
"style-loader": "^3.3.1",
"svg-react-loader": "^0.4.6",
"terser-webpack-plugin": "^5.3.0",
"typesafe-actions": "^3.0.0",
"typescript": "^3.7.2",
"url-loader": "^4.1.1",
"webpack": "^5.90.3",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "5.0.4",
"whatwg-fetch": "^3.6.2",
"zlib": "^1.0.5"
},
"engines": {
"node": ">=22.1.0"
}
}