forked from Wolox/react-chat-widget
-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
121 lines (121 loc) · 3.57 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
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
{
"name": "@ryaneewx/react-chat-widget",
"version": "3.4.1",
"description": "Chat web widget for React apps",
"main": "lib/index.js",
"repository": "[email protected]:ryaneewx/react-chat-widget.git",
"author": "Ryan Ee <[email protected]>",
"license": "MIT",
"types": "./lib/index.d.ts",
"scripts": {
"start": "webpack serve --config webpack.config.dev.js",
"build": "webpack --config ./webpack.config.prod.js",
"test": "jest --coverage"
},
"keywords": [
"react",
"chat",
"widget",
"javascript"
],
"dependencies": {
"classnames": "^2.3.2",
"date-fns": "^2.30.0",
"emoji-picker-react": "^4.5.2",
"markdown-it": "^13.0.2",
"markdown-it-link-attributes": "^4.0.1",
"markdown-it-sanitizer": "^0.4.3",
"markdown-it-sup": "^1.0.0",
"punycode": "^2.3.0",
"react-redux": "^8.1.3",
"redux": "^4.2.1"
},
"devDependencies": {
"@babel/cli": "^7.23.0",
"@babel/core": "^7.23.0",
"@babel/plugin-proposal-object-rest-spread": "^7.8.3",
"@babel/plugin-transform-react-jsx": "^7.22.15",
"@babel/preset-env": "^7.22.20",
"@babel/preset-react": "^7.22.15",
"@babel/preset-typescript": "^7.23.0",
"@toycode/markdown-it-class": "^1.2.4",
"@types/babel__generator": "^7.6.5",
"@types/babel__template": "^7.4.2",
"@types/babel__traverse": "^7.20.2",
"@types/emoji-mart": "^3.0.10",
"@types/estree": "^1.0.2",
"@types/istanbul-lib-report": "^3.0.1",
"@types/jest": "^29.5.5",
"@types/json-schema": "^7.0.13",
"@types/minimatch": "^5.1.2",
"@types/node": "^20.8.2",
"@types/prop-types": "^15.7.8",
"@types/react": "^18.2.25",
"@types/react-dom": "^18.2.10",
"@types/react-redux": "^7.1.27",
"@types/scheduler": "^0.16.4",
"@types/yargs-parser": "^21.0.1",
"autoprefixer": "^10.4.16",
"babel-jest": "^29.7.0",
"babel-loader": "^9.1.3",
"babel-plugin-module-resolver": "^5.0.0",
"caniuse-lite": "^1.0.30001546",
"clean-webpack-plugin": "^4.0.0",
"css-loader": "^6.8.1",
"css-minimizer-webpack-plugin": "^5.0.1",
"eslint": "^8.50.0",
"eslint-plugin-flowtype": "^8.0.3",
"eslint-plugin-import": "^2.28.1",
"eslint-plugin-prettier": "^5.0.0",
"file-loader": "^6.2.0",
"html-webpack-plugin": "^5.5.3",
"husky": "^8.0.3",
"jest": "^29.7.0",
"mini-css-extract-plugin": "^2.7.6",
"node-sass": "^9.0.0",
"postcss": "^8.4.31",
"postcss-loader": "^7.3.3",
"postcss-preset-env": "^9.1.4",
"prettier": "^3.0.3",
"prettier-eslint": "^15.0.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"redux-mock-store": "^1.5.4",
"sass-loader": "^13.3.2",
"source-map-loader": "^4.0.1",
"style-loader": "^3.3.3",
"terser-webpack-plugin": "^5.3.9",
"ts-jest": "^29.1.1",
"ts-loader": "^9.4.4",
"typescript": "^5.2.2",
"url-loader": "^4.1.1",
"webpack": "^5.88.2",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^4.15.1"
},
"peerDependencies": {
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"jest": {
"verbose": true,
"transform": {
"^.+\\.tsx?$": "ts-jest",
"^.+\\.(js|jsx)$": "babel-jest"
},
"testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.(jsx?|tsx?)$",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json",
"node"
],
"testURL": "http://localhost/",
"moduleNameMapper": {
"\\.(jpg|jpeg|png|gif|eot|otf|webp|svg|ttf|woff|woff2|mp4|webm|wav|mp3|m4a|aac|oga)$": "<rootDir>/mocks/fileMock.js",
"\\.(css|scss)$": "<rootDir>/mocks/styleMock.js"
}
}
}