-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 2.1 KB
/
Copy pathpackage.json
File metadata and controls
62 lines (62 loc) · 2.1 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
{
"name": "@comba.se/chat",
"version": "0.0.38",
"private": false,
"description": "Chat Components for Combase • Powered By Stream",
"devDependencies": {
"@babel/cli": "^7.8.4",
"@babel/core": "^7.9.0",
"@babel/node": "^7.8.7",
"@babel/plugin-proposal-class-properties": "^7.8.3",
"@babel/preset-env": "^7.9.0",
"@babel/preset-react": "^7.9.4",
"babel-eslint": "^10.1.0",
"babel-loader": "^8.1.0",
"eslint": "^6.8.0",
"eslint-config-airbnb": "^18.1.0",
"eslint-plugin-babel": "^5.3.0",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-jsx-a11y": "^6.2.3",
"husky": "^4.2.3",
"prettier": "^2.0.4",
"react-is": "^16.13.1"
},
"peerDependencies": {
"@comba.se/ui": "^0.0.80",
"moment": "^2.24.0",
"prop-types": "^15.7.2",
"react": "^16.13.1",
"react-spring": "^8.0.27",
"recyclerlistview": "^3.0.0",
"stream-chat": "^1.7.1",
"stream-chat-hooks": "^0.0.13",
"styled-components": "^5.1.0"
},
"main": "dist/index.js",
"scripts": {
"build": "yarn lint && babel src --out-dir dist",
"start": "node dist/index.js",
"dev": "npx babel-node src/index.js",
"lint": "yarn prettier --write --check --config ./.prettierrc \"**/*.js\" && eslint --fix ./src",
"test": "npx babel-node examples/index.js",
"prepublishOnly": "if [[ ! $PWD =~ dist$ ]]; then npm run _dist:nopublish; fi",
"_dist:nopublish": "echo 'Use `npm run dist` instead of `npm publish`!' && exit 1",
"_dist:prep": "yarn build && cp package.json dist && cp README.md dist",
"_dist:post": "rm -f dist/package.json && rm -f dist/README.md",
"dist": "npm run _dist:prep && npm publish dist && npm run _dist:post"
},
"repository": {
"type": "git",
"url": "git+https://github.com/GetStream/combase-chat.git"
},
"author": "Luke Smetham <luke@getstream.io>",
"license": "BSD-3-Clause",
"bugs": {
"url": "https://github.com/GetStream/combase-chat/issues"
},
"homepage": "https://github.com/GetStream/combase-chat#readme",
"dependencies": {
"@comba.se/ui": "^0.0.79",
"react-content-loader": "^5.0.3"
}
}