-
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.47 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.47 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": "xendera-test",
"version": "0.0.1",
"private": true,
"scripts": {
"start": "node node_modules/react-native/local-cli/cli.js start",
"ios": "open ios/XenderaTest.xcworkspace",
"android": "react-native run-android",
"build-android": "cd android && ./gradlew assembleRelease && open ./app/build/outputs/apk && cd ../",
"reverse": "adb reverse tcp:8081 tcp:8081 && adb reverse tcp:5678 tcp:5678",
"test": "jest",
"lint": "eslint .",
"lint:fix": "eslint . --fix"
},
"dependencies": {
"axios": "^0.18.0",
"lodash": "^4.17.10",
"moment": "^2.19.4",
"prop-types": "^15.6.0",
"react": "16.5.0",
"react-native": "0.57.1",
"react-native-animatable": "^1.3.0",
"react-native-fast-image": "^5.0.10",
"react-native-i18n": "^2.0.9",
"react-native-maps": "git+https://github.com/react-community/react-native-maps.git#1aee143302129f3811f1753155600bd041b5214d",
"react-native-splash-screen": "^3.1.1",
"react-native-typography": "^1.4.0",
"react-navigation": "^2.17.0"
},
"devDependencies": {
"@babel/runtime": "^7.1.2",
"babel-eslint": "^8.2.6",
"babel-jest": "23.6.0",
"babel-preset-react-native": "4.0.0",
"eslint": "^5.2.0",
"eslint-plugin-react": "^7.10.0",
"jest": "23.6.0",
"metro-react-native-babel-preset": "0.47.1",
"react-test-renderer": "16.5.0"
},
"jest": {
"preset": "react-native"
},
"rnpm": {
"assets": [
"resources/fonts"
]
}
}