-
Notifications
You must be signed in to change notification settings - Fork 88
/
package.json
103 lines (103 loc) · 3.47 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
{
"name": "react-native-activity-feed-core",
"version": "1.1.1",
"license": "BSD-3-Clause",
"author": {
"company": "Stream.io Inc"
},
"keywords": [
"feed",
"newsfeed",
"activity stream",
"react native",
"notification feed"
],
"devDependencies": {
"@babel/cli": "^7.1.0",
"@babel/core": "^7.0.0",
"@babel/node": "^7.0.0",
"@babel/plugin-external-helpers": "^7.0.0",
"@babel/plugin-proposal-class-properties": "^7.1.0",
"@babel/plugin-proposal-object-rest-spread": "^7.0.0",
"@babel/plugin-transform-runtime": "^7.2.0",
"@babel/preset-env": "^7.0.0",
"@babel/preset-react": "^7.0.0",
"@babel/runtime-corejs2": "^7.2.0",
"babel-eslint": "^8.2.5",
"babel-loader": "^8.0.0-beta.4",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-plugin-i18next-extract": "^0.6.1",
"babel-plugin-macros": "^2.5.1",
"babel-plugin-module-resolver": "^4.1.0",
"babel-plugin-react-native-web": "^0.14.10",
"babel-preset-env": "^7.0.0-beta.3",
"babel-register": "^7.0.0-beta.3",
"cross-env": "^5.1.4",
"eslint": "^5.12.1",
"eslint-plugin-jest": "^21.17.0",
"eslint-plugin-react": "^7.10.0",
"faker": "^4.1.0",
"file-loader": "^2.0.0",
"husky": "^1.3.1",
"metro-react-native-babel-preset": "^0.53.1",
"prettier": "^1.13.7",
"react-art": "^16.4.2",
"react-dom": "^16.4.2",
"react-native": "~0.55.2",
"react-native-scripts": "1.14.0",
"react-native-web": "^0.11.4",
"react-styleguidist": "^11.1.5",
"react-test-renderer": "16.3.1",
"webpack": "^4.17.1"
},
"main": "./src/index.js",
"scripts": {
"build": "yarn build-translations",
"eslint": "eslint '**/*.{js,md}' --max-warnings 0",
"prettier": "prettier --list-different '**/*.{js,ts,md,json}' .eslintrc.json .prettierrc .babelrc",
"prettier-fix": "prettier --write '**/*.{js,ts,md,json}' .eslintrc.json .prettierrc .babelrc",
"build-translations": "yarn run babel --config-file ./babel.i18next-extract.json 'src/components/**/*.{js,jsx,ts,tsx}' --quiet && yarn lint-fix",
"validate-translations": "node bin/validate-translations.js",
"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",
"docs": "styleguidist build",
"docs-server": "styleguidist server",
"test": "jest",
"release": "bin/release.sh",
"preversion": "yarn && yarn lint",
"prepack": "bin/prepack.sh",
"postpack": "bin/postpack.sh"
},
"husky": {
"hooks": {
"pre-commit": "dotgit/hooks/pre-commit-format.sh && dotgit/hooks/pre-commit-reject-binaries.py"
}
},
"dependencies": {
"dayjs": "^1.8.23",
"es6-symbol": "^3.1.1",
"eslint-plugin-babel": "^5.3.0",
"eslint-plugin-markdown": "^1.0.0",
"getstream": "~7.2.1",
"i18next": "^19.3.4",
"immutable": "^4.0.0-rc.9",
"mime-types": "^2.1.21",
"moment": "^2.22.2",
"numeral": "^2.0.6",
"path": "^0.12.7",
"react-native-keyboard-spacer": "^0.4.1",
"react-native-safe-area-view": "0.9.0",
"react-native-sticky-keyboard-accessory": "^0.1.3",
"stream-analytics": "^2.7.1",
"url-parse": "^1.4.3"
},
"peerDependencies": {
"react": "16.3.1",
"react-native": "~0.55.2",
"react-navigation": "^2.3.1"
},
"files": [
"src",
"README.md"
]
}