forked from GetStream/react-native-example
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.92 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 1.92 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": "react-native-activity-feed-showcase",
"version": "0.1.0",
"license": "BSD-3-Clause",
"author": {
"company": "Stream.io Inc"
},
"keywords": [
"feed",
"newsfeed",
"activity stream",
"react native",
"notification feed"
],
"devDependencies": {
"@babel/core": "^7.4.5",
"babel-plugin-dotenv": "^0.1.1",
"babel-preset-expo": "^5.1.1",
"dotenv": "^6.0.0",
"eslint": "^5.1.0",
"eslint-plugin-flowtype": "^2.29.1",
"eslint-plugin-jest": "^21.17.0",
"eslint-plugin-react": "^7.10.0",
"flow-bin": "^0.80.0",
"flow-copy-source": "^2.0.2",
"jest-expo": "~33.0.0",
"metro-react-native-babel-preset": "^0.54.1",
"prettier": "^1.13.7",
"react-native-scripts": "1.14.0",
"react-test-renderer": "16.3.1"
},
"main": "./index.js",
"scripts": {
"build": "rm -rf lib && babel '*.js' components mock --out-dir lib && cp -R ./images/ lib/ && flow-copy-source src lib",
"start": "react-native-scripts start",
"eject": "react-native-scripts eject",
"android": "react-native-scripts android",
"ios": "react-native-scripts ios",
"eslint": "eslint '**/*.js' --max-warnings 0",
"flow": "flow",
"prettier": "prettier --list-different '**/*.{js,ts}'",
"lint": "prettier --list-different '**/*.{js,ts}' && eslint '**/*.js' --max-warnings 0 && flow",
"lint-fix": "prettier --write '**/*.{js,ts}' && eslint --fix '**/*.js'",
"init-data": "babel-node scripts/initData.js",
"test": "jest"
},
"jest": {
"preset": "jest-expo"
},
"dependencies": {
"expo": "^33.0.0",
"expo-activity-feed": "^0.8.8",
"expo-keep-awake": "~5.0.1",
"faker": "^4.1.0",
"numeral": "^2.0.6",
"react": "16.8.3",
"react-native": "https://github.com/expo/react-native/archive/sdk-33.0.0.tar.gz",
"react-native-dotenv": "^0.2.0",
"react-native-keyboard-aware-scroll-view": "^0.5.0",
"react-navigation": "^2.3.1"
}
}