This repository was archived by the owner on Sep 3, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.75 KB
/
Copy pathpackage.json
File metadata and controls
59 lines (59 loc) · 1.75 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": "ReactNativeStarterPack",
"version": "0.0.1",
"private": true,
"scripts": {
"start": "node node_modules/react-native/local-cli/cli.js start",
"test": "jest",
"lint": "eslint src/",
"flow": "flow",
"ios": "react-native run-ios",
"android": "react-native run-android",
"build-android": "react-native bundle --dev false --platform android --entry-file index.js --bundle-output ./android/app/build/intermediates/assets/debug/index.android.bundle --assets-dest ./android/app/build/intermediates/res/merged/debug"
},
"dependencies": {
"react": "^16.6.1",
"react-native": "^0.57.5",
"react-native-gesture-handler": "^1.0.9",
"react-navigation": "^3.0.0",
"react-redux": "^5.0.5",
"redux": "4",
"redux-logger": "^3.0.6",
"redux-pack": "^0.1.5",
"redux-persist": "^5.1.0",
"redux-thunk": "^2.2.0"
},
"devDependencies": {
"@babel/core": "^7.0.0-beta",
"babel-core": "7.0.0-bridge.0",
"babel-eslint": "^10.0.1",
"babel-jest": "^23.6.0",
"eslint": "^5.0.1",
"eslint-config-airbnb": "17",
"eslint-plugin-flowtype": "^3.2.0",
"eslint-plugin-import": "^2.12.0",
"eslint-plugin-jsx-a11y": "^6.0.3",
"eslint-plugin-react": "^7.9.1",
"flow-bin": "^0.78.0",
"jest": "^23.6.0",
"metro-react-native-babel-preset": "^0.49.2",
"react-test-renderer": "^16.6.1"
},
"jest": {
"preset": "react-native",
"transformIgnorePatterns": [
"node_modules/(?!(jest-)?react-native|react-navigation|@react-navigation)"
],
"transform": {
"^.+\\.js$": "<rootDir>/node_modules/react-native/jest/preprocessor.js"
},
"globals": {
"window": {
"navigator": {}
}
},
"setupFiles": [
"<rootDir>/jestSetup.js"
]
}
}