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
65 lines (65 loc) · 2 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 2 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
63
64
65
{
"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-cli": "^6.26.0",
"babel-eslint": "^8.2.5",
"babel-plugin-root-import": "^6.1.0",
"babel-plugin-transform-inline-environment-variables": "^0.4.3",
"babel-preset-env": "^1.7.0",
"babel-preset-flow": "^6.23.0",
"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": "~27.0.0",
"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": {
"babel-plugin-module-resolver": "^3.1.1",
"babel-preset-expo": "^4.0.0",
"expo": "^29.0.0",
"expo-activity-feed": "^0.8.8",
"faker": "^4.1.0",
"numeral": "^2.0.6",
"react": "16.3.1",
"react-native": "~0.55.2",
"react-native-dotenv": "^0.2.0",
"react-native-keyboard-aware-scroll-view": "^0.5.0",
"react-navigation": "^2.3.1"
}
}