forked from Wolox/react-chat-widget
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
88 lines (88 loc) · 2.68 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
{
"name": "react-chat-widget",
"version": "2.1.4-1",
"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",
"scripts": {
"start": "webpack-dev-server --config webpack.config.dev.js",
"build": "webpack --config ./webpack.config.prod.js",
"test": "jest --coverage",
"prepublishOnly": "npm run test && npm run build"
},
"keywords": [
"react",
"chat",
"widget",
"javascript"
],
"dependencies": {
"immutable": "^3.8.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",
"prop-types": "^15.5.10",
"react-immutable-proptypes": "^2.1.0",
"react-redux": "^5.0.6",
"redux": "^3.7.2"
},
"devDependencies": {
"autoprefixer": "^8.2.0",
"babel-cli": "^6.24.1",
"babel-eslint": "^7.2.2",
"babel-jest": "^19.0.0",
"babel-loader": "^7.1.1",
"babel-plugin-module-resolver": "^2.7.1",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-preset-env": "^1.7.0",
"babel-preset-react": "^6.24.1",
"clean-webpack-plugin": "^0.1.19",
"css-loader": "^0.28.4",
"enzyme": "^3.3.0",
"enzyme-adapter-react-16": "^1.1.1",
"eslint": "^3.19.0",
"eslint-config-wolox": "^1.0.0",
"eslint-import-resolver-babel-module": "^3.0.0",
"eslint-loader": "^2.0.0",
"eslint-plugin-flowtype": "^2.30.4",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-jsx-a11y": "^4.0.0",
"eslint-plugin-prettier": "^2.6.2",
"eslint-plugin-react": "^6.10.3",
"file-loader": "^0.11.2",
"html-webpack-plugin": "^3.2.0",
"husky": "^0.13.3",
"jest": "^22.4.3",
"mini-css-extract-plugin": "^0.4.1",
"node-sass": "^4.5.3",
"optimize-css-assets-webpack-plugin": "^4.0.3",
"postcss-flexbugs-fixes": "^3.3.0",
"postcss-loader": "^2.1.3",
"prettier": "^1.1.0",
"prettier-eslint": "^5.1.0",
"react": "^16.3.1",
"react-dom": "^16.3.1",
"react-test-renderer": "^15.6.1",
"sass-loader": "^6.0.6",
"style-loader": "^0.18.2",
"uglifyjs-webpack-plugin": "^1.2.7",
"url-loader": "^0.5.9",
"webpack": "^4.4.1",
"webpack-cli": "^2.0.13",
"webpack-dev-server": "^3.1.4"
},
"peerDependencies": {
"react": "^16.3.1"
},
"jest": {
"verbose": true,
"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"
}
}
}