forked from Wolox/react-chat-widget
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 2.07 KB
/
package.json
File metadata and controls
73 lines (73 loc) · 2.07 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
{
"name": "react-chat-widget",
"version": "2.1.2",
"description": "Chat web widget for React apps",
"main": "lib/index.js",
"repository": "git@github.com:Wolox/react-chat-widget.git",
"author": "Martín Callegari <martin.callegari@wolox.com.ar>",
"license": "MIT",
"scripts": {
"build": "webpack",
"test": "jest --coverage",
"prepublish": "npm run test && npm run build"
},
"keywords": [
"react",
"chat",
"widget",
"javascript"
],
"dependencies": {
"immutable": "^3.8.1",
"marked": "^0.3.6",
"prop-types": "^15.5.10",
"react-immutable-proptypes": "^2.1.0",
"react-redux": "^5.0.6",
"redux": "^3.7.2"
},
"devDependencies": {
"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-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"css-loader": "^0.28.4",
"enzyme": "^2.9.1",
"eslint": "^3.19.0",
"eslint-config-airbnb": "^14.1.0",
"eslint-config-prettier": "^1.6.0",
"eslint-import-resolver-babel-module": "^3.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.0.1",
"eslint-plugin-react": "^6.10.3",
"extract-text-webpack-plugin": "^3.0.0",
"file-loader": "^0.11.2",
"husky": "^0.13.3",
"jest": "^20.0.4",
"node-sass": "^4.5.3",
"prettier": "^1.1.0",
"prettier-eslint": "^5.1.0",
"react": "^15.6.1",
"react-dom": "^15.6.1",
"react-test-renderer": "^15.6.1",
"sass-loader": "^6.0.6",
"style-loader": "^0.18.2",
"url-loader": "^0.5.9",
"webpack": "^3.4.1"
},
"peerDependencies": {
"react": "^15.6.1"
},
"jest": {
"verbose": true,
"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"
}
}
}