forked from Yaniislav/react-native-starter
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.39 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.39 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
{
"name": "boilerplate",
"version": "0.0.1",
"private": true,
"scripts": {
"android": "react-native run-android",
"ios": "react-native run-ios",
"start": "react-native start",
"test": "jest",
"lint": "eslint .",
"android-bundle": "react-native bundle --platform android --dev false --entry-file index.js --bundle-output android/app/src/main/assets/index.android.bundle --assets-dest android/app/src/main/res/"
},
"rnpm": {
"assets": [
"./assets/fonts/"
]
},
"dependencies": {
"axios": "0.18.0",
"prop-types": "15.7.2",
"react": "16.9.0",
"react-native": "0.61.5",
"react-native-gesture-handler": "1.2.2",
"react-native-keyboard-aware-scroll-view": "0.8.0",
"react-native-size-matters": "0.2.1",
"react-navigation": "3.11.0",
"react-navigation-redux-helpers": "3.0.2",
"react-redux": "5.0.7",
"redux": "4.0.0",
"redux-act": "1.7.4",
"redux-form": "7.4.2",
"redux-persist": "5.10.0",
"redux-saga": "1.0.2"
},
"devDependencies": {
"@babel/core": "^7.8.3",
"@babel/plugin-proposal-decorators": "^7.8.3",
"@babel/runtime": "^7.8.3",
"@react-native-community/eslint-config": "^0.0.6",
"babel-jest": "^25.1.0",
"eslint": "^6.8.0",
"jest": "^25.1.0",
"metro-react-native-babel-preset": "^0.58.0",
"react-test-renderer": "16.9.0"
},
"jest": {
"preset": "react-native"
}
}