forked from brandonmowat/react-chat-ui
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.21 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
{
"name": "react-chat-ui",
"version": "0.2.4",
"description": "A library of React components for building chat UI's",
"repository": "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": "npm run compile",
"test": "echo \"Error: no test specified\" && exit 1",
"dev": "gulp watch"
},
"keywords": [
"react",
"chat",
"chatfeed",
"reactjs",
"ui",
"messenger"
],
"author": "Brandon Mowat",
"license": "ISC",
"dependencies": {
"prop-types": "^15.5.10",
"react": "^16.1.0",
"react-dom": "^16.1.0"
},
"peerDependencies": {
"react": "^15.3.1",
"react-dom": "^15.3.1"
},
"devDependencies": {
"babel": "^6.23.0",
"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",
"gulp": "^3.9.1",
"gulp-babel": "^6.1.2",
"gulp-plumber": "^1.1.0",
"gulp-typescript": "^3.2.2",
"typescript": "^2.5.2"
}
}