-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 2.1 KB
/
Copy pathpackage.json
File metadata and controls
59 lines (59 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
{
"name": "stream-chat-react-native",
"version": "0.1.13",
"author": {
"company": "Stream.io Inc"
},
"keywords": [
"chat",
"messaging",
"react-native"
],
"main": "dist/index.js",
"module": "dist/index.es.js",
"jsnext:main": "dist/index.es.js",
"files": [
"dist",
"README.md"
],
"devDependencies": {
"@babel/core": "^7.4.3",
"@babel/plugin-proposal-class-properties": "^7.4.0",
"@babel/plugin-proposal-object-rest-spread": "^7.4.3",
"@babel/preset-env": "^7.4.3",
"@babel/preset-react": "^7.0.0",
"babel-loader": "^8.0.5",
"babel-plugin-react-native-web": "^0.11.2",
"prettier": "^1.16.4",
"react": "^16.5.0",
"react-dom": "^16.8.6",
"react-styleguidist": "^9.0.7",
"rollup": "^0.68.2",
"rollup-plugin-babel": "^4.0.3",
"rollup-plugin-commonjs": "^9.1.8",
"rollup-plugin-json": "^3.1.0",
"rollup-plugin-peer-deps-external": "^2.2.0",
"rollup-plugin-replace": "^2.1.0",
"webpack": "^4.29.6"
},
"scripts": {
"start": "rm -rf dist && rollup -c -w",
"build": "rm -rf dist && rollup -c",
"prettier": "prettier --list-different '**/*.{js,ts,md,json}' .eslintrc.json .prettierrc .babelrc",
"prettier-fix": "prettier --write '**/*.{js,ts,md,json}' .eslintrc.json .prettierrc .babelrc",
"eslint": "eslint '**/*.{js,md}' --max-warnings 0",
"analyze": "yarn build -- --stats && webpack-bundle-analyzer build/bundle-stats.json",
"lint": "prettier --list-different '**/*.{js,ts,md,json}' .eslintrc.json .prettierrc .babelrc && eslint '**/*.{js,md}' --max-warnings 0",
"lint-fix": "prettier --write '**/*.{js,ts,md,json}' .eslintrc.json .prettierrc .babelrc && eslint --fix '**/*.{js,md}' --max-warnings 0",
"preversion": "yarn",
"prepare": "yarn run build"
},
"dependencies": {
"@react-native-community/netinfo": "^2.0.7",
"es6-symbol": "^3.1.1",
"react-native-document-picker": "^2.3.0",
"react-native-image-crop-picker": "^0.24.0",
"react-native-image-picker": "^0.28.1",
"stream-chat-react-native-core": "git+https://github.com/Vedantu/stream-chat-react-native.git"
}
}