forked from fmsouza/ethereum-wallet
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 2.06 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
{
"name": "EthereumWallet",
"version": "0.1.0",
"license": "MIT",
"scripts": {
"postinstall": "./config/postinstall.sh",
"start": "node node_modules/react-native/local-cli/cli.js start",
"test": "jest",
"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",
"logcat": "adb logcat *:S ReactNative:V ReactNativeJS:V",
"ios": "react-native run-ios"
},
"dependencies": {
"autobind-decorator": "2.1.0",
"axios": "0.18.0",
"ethers": "2.2.6",
"identicon.js": "2.3.1",
"mobx": "3.6.1",
"mobx-react": "4.4.2",
"moment": "2.21.0",
"react": "16.2.0",
"react-native": "0.54.0",
"react-native-camera": "1.0.1",
"react-native-modal": "5.2.0",
"react-native-permissions": "1.1.1",
"react-native-qrcode-svg": "5.0.6",
"react-native-sensitive-info": "5.1.0",
"react-native-snackbar": "0.4.6",
"react-native-svg": "6.2.2",
"react-native-vector-icons": "4.5.0",
"react-navigation": "1.4.0"
},
"devDependencies": {
"babel-jest": "22.4.1",
"babel-plugin-module-resolver": "3.1.0",
"babel-plugin-transform-decorators-legacy": "1.3.4",
"babel-preset-react-native": "4.0.0",
"enzyme": "3.3.0",
"enzyme-adapter-react-16": "1.1.1",
"eslint-config-rallycoding": "3.2.0",
"jest": "22.4.2",
"jsdom": "11.6.2",
"react-native-mock-render": "0.0.19",
"react-test-renderer": "16.2.0",
"sinon": "4.4.2"
},
"jest": {
"preset": "react-native",
"setupTestFrameworkScriptFile": "<rootDir>/config/jest.config.js"
}
}