-
-
Notifications
You must be signed in to change notification settings - Fork 105
/
Copy pathpackage.json
43 lines (43 loc) · 1.12 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
{
"name": "react-chat-ui",
"version": "0.4.0",
"description": "A library of React components for building chat UI's",
"repository": "https://github.com/brandonmowat/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": {
"@types/react": "^16.9.2",
"prop-types": "^15.5.10"
},
"peerDependencies": {
"react": "^16.8.6",
"react-dom": "^16.8.6"
},
"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": "^16.9.0",
"react-dom": "^16.8.6",
"typescript": "^3.6.3"
}
}