-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 1.82 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
{
"name": "HNIntroApp",
"version": "0.0.1",
"private": true,
"scripts": {
"start": "react-native start",
"run:ios": "react-native run-ios --simulator='iPhone Xs Max' --configuration Debug",
"run:iphone_6_plus": "react-native run-ios --simulator='iPhone 6s Plus' --configuration Release",
"run:ios:release": "react-native run-ios --simulator='iPhone Xs Max' --configuration Release",
"run:ios:x": "react-native run-ios --device --udid b7f54fff5140ad8a06d1f320c4f3d5ded409931f --configuration Release",
"run:android": "react-native run-android",
"run:android:release": "react-native run-android --variant=release",
"bundle": "yarn bundle:ios && yarn bundle:android",
"bundle:ios": "node ./node_modules/react-native/local-cli/cli.js bundle --platform ios --entry-file index.js --bundle-output ios/main.jsbundle --dev=false --verbose",
"bundle:android": "node ./node_modules/react-native/local-cli/cli.js bundle --platform android --entry-file index.js --bundle-output android/main.jsbundle --dev=false --assets-dest android/app/src/main/res/ --verbose",
"test:watch": "jest --watch",
"lint": "eslint src",
"test": "jest"
},
"dependencies": {
"@eva-design/eva": "^1.0.1",
"mobx": "^5.13.0",
"mobx-react": "^6.1.3",
"mobx-state-tree": "^3.14.1",
"react": "16.8.6",
"react-native": "0.60.4",
"react-native-gesture-handler": "^1.3.0",
"react-native-ui-kitten": "^4.2.0-beta.1",
"react-navigation": "^3.11.1",
"recompose": "^0.30.0"
},
"devDependencies": {
"@babel/core": "^7.5.0",
"@babel/runtime": "^7.5.0",
"@react-native-community/eslint-config": "^0.0.3",
"babel-jest": "^24.1.0",
"jest": "^24.1.0",
"metro-react-native-babel-preset": "^0.54.1",
"react-test-renderer": "16.8.6"
},
"jest": {
"preset": "react-native"
}
}