-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.53 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
{
"name": "ExoPlanetNativeApp",
"version": "0.0.1",
"private": true,
"scripts": {
"start": "node node_modules/react-native/local-cli/cli.js start",
"test": "jest",
"tsc": "tsc",
"clean": "rimraf artifacts",
"build": "npm run clean && npm run tsc --",
"reverse": "adb reverse tcp:8081 tcp:8081",
"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"
},
"dependencies": {
"native-base": "^2.3.9",
"react": "16.2.0",
"react-native": "0.53.0",
"react-native-admob": "^1.3.2",
"react-native-base": "^1.1.0",
"react-native-game-engine": "^0.8.9",
"react-native-localization": "^0.2.3",
"react-native-maps": "^0.20.1",
"react-native-sensor-manager": "^0.1.10",
"react-native-svg": "^6.2.2",
"react-native-svg-pan-zoom": "^0.1.2",
"react-native-typescript-transformer": "^1.2.3",
"react-native-vector-icons": "^4.5.0",
"react-navigation": "^1.0.3",
"react-redux": "^5.0.7",
"redux": "^4.0.0",
"redux-thunk": "^2.2.0"
},
"devDependencies": {
"@types/jest": "^22.1.3",
"@types/react": "^16.0.38",
"@types/react-native": "^0.52.12",
"babel-jest": "22.2.2",
"babel-preset-react-native": "4.0.0",
"concurrently": "^3.5.1",
"jest": "22.3.0",
"react-test-renderer": "16.2.0",
"rimraf": "^2.6.2",
"tslint": "^5.9.1",
"typescript": "^2.7.2"
},
"jest": {
"preset": "react-native"
}
}