-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.66 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.66 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
{
"name": "EtherboxWallet",
"version": "0.1.0",
"private": true,
"scripts": {
"postinstall": "react-native upgrade && react-native link",
"start": "react-native start",
"test": "jest",
"android:build": "cd android && ./gradlew assembleDebug && cd .. && cp android/app/build/outputs/apk/app-debug.apk etherbox.apk",
"android:bundle": "react-native bundle --dev false --platform android --entry-file index.js --bundle-output android/app/src/main/assets/index.android.bundle --assets-dest android/app/src/main/res",
"android:clean": "cd android && ./gradlew clean && cd ..",
"android:generate": "npm run android:bundle && npm run android:build",
"android": "react-native run-android",
"ios": "react-native run-ios"
},
"dependencies": {
"autobind-decorator": "2.1.0",
"axios": "0.17.1",
"ethers": "2.1.3",
"mobx": "3.3.2",
"mobx-react": "4.3.5",
"moment": "2.19.2",
"react": "16.1.1",
"react-native": "0.50.4",
"react-native-camera": "0.12.0",
"react-native-linear-gradient": "2.3.0",
"react-native-permissions": "1.0.2",
"react-native-qrcode-svg": "5.0.4",
"react-native-sensitive-info": "5.1.0",
"react-native-snap-carousel": "3.4.0",
"react-native-svg": "6.0.0",
"react-native-vector-icons": "4.4.2",
"react-navigation": "1.0.0-beta.21"
},
"devDependencies": {
"babel-jest": "21.2.0",
"babel-plugin-module-resolver": "2.7.1",
"babel-plugin-transform-decorators-legacy": "1.3.4",
"babel-preset-react-native": "4.0.0",
"eslint-config-rallycoding": "3.2.0",
"jest": "21.2.1",
"react-test-renderer": "16.1.1"
},
"jest": {
"preset": "react-native"
}
}