-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
84 lines (84 loc) · 2.74 KB
/
package.json
File metadata and controls
84 lines (84 loc) · 2.74 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
74
75
76
77
78
79
80
81
82
83
84
{
"name": "rc-chat-view",
"version": "1.0.2",
"description": "Fully customisable chat widget for React",
"main": "dist/index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "webpack-dev-server --hot --config webpack.dev.js",
"transpile": "babel src -d dist --copy-files",
"prepublishOnly": "npm run transpile",
"build": "webpack --config webpack.prod.js",
"deploy": "npx gh-pages -d demo/dist -b gh-pages",
"publish-demo": "npm run build && npm run deploy"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Christopher-Caroni/rc-chat-view.git"
},
"keywords": [
"react",
"chat",
"widget",
"message",
"messenger",
"conversation",
"ui",
"react-component",
"emoji"
],
"author": "Christopher Caroni",
"license": "MIT",
"bugs": {
"url": "https://github.com/Christopher-Caroni/rc-chat-view/issues"
},
"homepage": "https://github.com/Christopher-Caroni/rc-chat-view#readme",
"peerDependencies": {
"react": "^16.4.0",
"react-dom": "^16.4.0"
},
"devDependencies": {
"@babel/cli": "^7.0.0-rc.3",
"@babel/core": "^7.0.0-rc.3",
"@babel/plugin-proposal-class-properties": "^7.0.0-rc.3",
"@babel/preset-env": "^7.0.0-rc.3",
"@babel/preset-react": "^7.0.0-rc.3",
"babel-eslint": "^9.0.0",
"babel-loader": "^8.0.0-beta.6",
"babel-runtime": "^6.26.0",
"css-loader": "^1.0.0",
"eslint": "^5.5.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-config-prettier": "^3.0.1",
"eslint-plugin-babel": "^5.1.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jsx-a11y": "^6.1.1",
"eslint-plugin-prettier": "^2.6.2",
"eslint-plugin-react": "^7.11.1",
"file-loader": "^2.0.0",
"gh-pages": "^1.2.0",
"html-webpack-plugin": "^3.2.0",
"prettier-eslint": "^8.8.2",
"react": "^16.4.2",
"react-dom": "^16.4.2",
"style-loader": "^0.22.1",
"url-loader": "^1.1.1",
"webpack": "^4.17.1",
"webpack-bundle-analyzer": "^2.13.1",
"webpack-cli": "^3.1.0",
"webpack-dev-server": "^3.1.6",
"webpack-merge": "^4.1.4"
},
"dependencies": {
"babel-plugin-lodash": "^3.3.4",
"emoji-mart": "^2.8.1",
"markdown-it": "^8.4.2",
"markdown-it-emoji": "^1.4.0",
"moment": "^2.22.2",
"prop-types": "^15.6.2",
"react-animate-height": "^2.0.4",
"react-avatar": "^3.2.0",
"react-hot-loader": "^4.3.5",
"react-moment-proptypes": "^1.6.0"
}
}