forked from jefferson-surge/react-chat-ui
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.11 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.11 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
{
"name": "@jeffersonl-surge/react-chat-ui",
"version": "0.0.9",
"description": "A library of React components for building chat UI's",
"repository": "https://github.com/jefferson-surge/react-chat-ui",
"main": "./lib/index.js",
"scripts": {
"build-demo": "npx babel --presets es2015,stage-0 ./demo/index.js -o ./demo/es5.js && npx browserify demo/es5.js -o demo/bundle.js",
"compile": "./precompile.sh",
"prepublish": "yarn compile",
"test": "echo \"Error: no test specified\" && exit 1",
"dev": "tsc --watch"
},
"keywords": [
"react",
"chat",
"chatfeed",
"reactjs",
"ui",
"messenger"
],
"author": "Brandon Mowat",
"license": "ISC",
"dependencies": {
"prop-types": "^15.5.10"
},
"peerDependencies": {
"react": "^17.0.2",
"react-dom": "^17.0.2"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.1.18",
"babel-preset-es2015": "^6.1.18",
"babel-preset-react": "^6.1.18",
"babel-preset-stage-0": "^6.1.18",
"browserify": "^14.4.0",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"typescript": "^3.2.4"
}
}