-
Notifications
You must be signed in to change notification settings - Fork 48
/
package.json
77 lines (77 loc) · 2.65 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
{
"name": "EthereumWallet",
"version": "0.0.1",
"license": "MIT",
"scripts": {
"start": "node node_modules/react-native/local-cli/cli.js start",
"test": "jest",
"test:ci": "jest --ci --coverage --detectOpenHandles",
"test:watch": "jest --watch",
"android:build": "cd android && ./gradlew assembleDebug && cd .. && cp android/app/build/outputs/apk/debug/app-debug.apk EthereumWallet.apk",
"android:bundle": "react-native bundle --dev false --platform android --entry-file index.js --bundle-output ./android/app/build/intermediates/assets/debug/index.android.bundle --assets-dest ./android/app/build/intermediates/res/merged/debug",
"android:clean": "cd android && ./gradlew clean && cd ..",
"android:generate-apk": "npm run android:bundle && npm run android:build",
"android": "react-native run-android",
"android:logcat": "adb logcat *:S ReactNative:V ReactNativeJS:V",
"ios": "react-native run-ios"
},
"dependencies": {
"axios": "0.19.0",
"ethers": "4.0.33",
"identicon.js": "2.3.3",
"mobx": "5.9.4",
"mobx-react": "5.4.4",
"moment": "2.24.0",
"react": "16.8.6",
"react-native": "0.59.9",
"react-native-camera": "2.10.1",
"react-native-gesture-handler": "1.2.1",
"react-native-modal": "11.0.1",
"react-native-permissions": "1.1.1",
"react-native-qrcode-svg": "5.1.2",
"react-native-sensitive-info": "5.4.1",
"react-native-snackbar": "1.0.0",
"react-native-svg": "9.4.0",
"react-native-vector-icons": "6.4.2",
"react-navigation": "3.11.0"
},
"devDependencies": {
"@babel/core": "7.5.5",
"@babel/plugin-proposal-decorators": "7.4.4",
"@babel/plugin-transform-runtime": "7.5.5",
"@babel/runtime": "7.5.5",
"babel-core": "7.0.0-bridge.0",
"babel-jest": "24.8.0",
"babel-plugin-module-resolver": "3.2.0",
"babel-preset-react-native": "4.0.1",
"enzyme": "3.10.0",
"enzyme-adapter-react-16": "1.14.0",
"eslint-config-rallycoding": "3.2.0",
"jest": "24.8.0",
"metro-react-native-babel-preset": "0.55.0",
"react-native-mock-render": "0.1.5",
"react-test-renderer": "16.8.6"
},
"jest": {
"preset": "react-native",
"setupFilesAfterEnv": [
"<rootDir>/src/setupTests.js"
],
"coverageDirectory": "./coverage",
"collectCoverageFrom": [
"src/**/*.js"
],
"coveragePathIgnorePatterns": [
"/node_modules/",
"setupTests.js",
"common/actions/index.js",
"common/services/index.js",
"common/stores/index.js",
"common/utils/index.js",
"common/constants",
"common/styles",
"components/views/index.js",
"components/widgets/index.js"
]
}
}