-
Notifications
You must be signed in to change notification settings - Fork 458
/
package.json
116 lines (116 loc) · 3.43 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
{
"name": "react-chat-widget",
"version": "3.1.4",
"description": "Chat web widget for React apps",
"main": "lib/index.js",
"repository": "[email protected]:Wolox/react-chat-widget.git",
"author": "Martín Callegari <[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.2.6",
"date-fns": "^2.11.1",
"emoji-mart": "^3.0.1",
"markdown-it": "^8.4.1",
"markdown-it-link-attributes": "^2.1.0",
"markdown-it-sanitizer": "^0.4.3",
"markdown-it-sup": "^1.0.0",
"react-redux": "^7.2.4",
"redux": "^4.1.0"
},
"devDependencies": {
"@babel/cli": "^7.8.4",
"@babel/core": "^7.14.0",
"@babel/plugin-proposal-class-properties": "^7.8.3",
"@babel/plugin-proposal-object-rest-spread": "^7.8.3",
"@babel/plugin-transform-react-jsx": "^7.14.9",
"@babel/preset-env": "^7.14.1",
"@babel/preset-react": "^7.14.5",
"@babel/preset-typescript": "^7.8.3",
"@toycode/markdown-it-class": "^1.2.3",
"@types/classnames": "^2.2.10",
"@types/enzyme": "^3.10.5",
"@types/jest": "^25.1.4",
"@types/react": "^17.0.37",
"@types/react-dom": "^17.0.11",
"@types/react-redux": "^7.1.7",
"@typescript-eslint/eslint-plugin": "^4.22.0",
"@wojtekmaj/enzyme-adapter-react-17": "^0.6.1",
"autoprefixer": "^8.2.0",
"babel-jest": "^19.0.0",
"babel-loader": "^8.2.2",
"babel-plugin-module-resolver": "^4.0.0",
"caniuse-lite": "^1.0.30001219",
"clean-webpack-plugin": "^4.0.0-alpha.0",
"css-loader": "^5.2.4",
"enzyme": "^3.11.0",
"eslint": "^6.8.0",
"eslint-config-wolox": "^4.0.0",
"eslint-loader": "^3.0.3",
"eslint-plugin-flowtype": "^2.30.4",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-prettier": "^3.4.0",
"file-loader": "^0.11.2",
"html-webpack-plugin": "^5.3.1",
"husky": "^4.2.3",
"jest": "^25.5.4",
"mini-css-extract-plugin": "^1.5.1",
"node-sass": "^4.13.1",
"optimize-css-assets-webpack-plugin": "^5.0.4",
"postcss": "^8.2.13",
"postcss-loader": "^5.2.0",
"postcss-preset-env": "^6.7.0",
"prettier": "^1.1.0",
"prettier-eslint": "^9.0.2",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"redux-mock-store": "^1.5.4",
"sass-loader": "^11.0.1",
"source-map-loader": "^2.0.1",
"style-loader": "^2.0.0",
"ts-jest": "^25.3.1",
"ts-loader": "^9.1.1",
"typescript": "^4.2.4",
"uglifyjs-webpack-plugin": "^1.2.7",
"url-loader": "^4.1.1",
"webpack": "^5.36.1",
"webpack-cli": "^4.6.0",
"webpack-dev-server": "^3.11.2"
},
"peerDependencies": {
"react": "^17.0.2",
"react-dom": "^17.0.2"
},
"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"
}
}
}