forked from atoami/react-native-navigation-redux-starter-kit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
83 lines (83 loc) · 2.59 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
{
"name": "ReactNativeStarterKit",
"version": "0.0.1",
"private": true,
"scripts": {
"start": "node node_modules/react-native/local-cli/cli.js start",
"test": "jest",
"android": "concurrently \"npm run android:dubugger\" \"npm run android:packager\" \"cd ./android && ./gradlew app:assembleDebug && ./gradlew installDebug\"",
"android-build-prod": "export ENVFILE=.env && cd android && ./gradlew app:assembleRelease && cd .."
},
"dependencies": {
"lodash": "^4.17.11",
"prop-types": "^15.6.2",
"react": "16.6.3",
"react-native": "0.58.5",
"react-native-config": "^0.11.7",
"react-native-elements": "^0.19.1",
"react-native-fbsdk": "^0.8.0",
"react-native-navigation": "2.12.0",
"react-native-vector-icons": "^6.1.0",
"react-redux": "^5.1.0",
"redux": "^4.0.1",
"redux-actions": "^2.6.4",
"redux-logger": "^3.0.6",
"redux-persist": "^5.10.0",
"redux-saga": "^0.16.2",
"redux-thunk": "^2.3.0",
"remote-redux-devtools": "^0.5.12"
},
"devDependencies": {
"@babel/core": "7.2.2",
"@babel/plugin-proposal-decorators": "7.2.2",
"@babel/plugin-syntax-export-namespace-from": "7.0.0",
"@babel/preset-env": "7.2.3",
"babel-core": "7.0.0-bridge.0",
"babel-eslint": "10.0.1",
"babel-jest": "24.1.0",
"babel-plugin-transform-decorators": "6.24.1",
"babel-plugin-transform-decorators-legacy": "1.3.5",
"babel-plugin-transform-export-extensions": "6.22.0",
"babel-preset-env": "2.0.0-alpha.20",
"babel-preset-jest": "23.2.0",
"babel-preset-react-native": "5.0.2",
"babel-preset-react-native-stage-0": "1.0.1",
"enzyme": "3.7.0",
"eslint": "5.9.0",
"eslint-config-airbnb": "17.1.0",
"eslint-plugin-flowtype": "3.2.0",
"eslint-plugin-import": "2.14.0",
"eslint-plugin-jsx-a11y": "6.1.2",
"eslint-plugin-react": "7.11.1",
"eslint-plugin-react-native": "3.5.0",
"flow-bin": "0.86.0",
"flow-typed": "2.5.1",
"jest": "24.1.0",
"jest-enzyme": "7.0.1",
"jest-repl": "23.6.0",
"metro-react-native-babel-preset": "0.52.0",
"react-test-renderer": "16.6.3",
"schedule": "0.4.0"
},
"jest": {
"preset": "react-native",
"bail": true,
"verbose": true,
"automock": false,
"cacheDirectory": "<rootDir>/.jest-cache",
"moduleNameMapper": {
"^React$": "<rootDir>/node_modules/react"
},
"testMatch": [
"<rootDir>/(tests/unit/**/*.spec.(js|jsx|ts|tsx)|**/__tests__/*.(js|jsx|ts|tsx))"
],
"transform": {
"^.+\\.js?$": "babel-jest"
}
},
"rnpm": {
"assets": [
"src/fonts/assets"
]
}
}