-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
105 lines (105 loc) · 4.15 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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
{
"name": "bitfinex-ticker",
"version": "1.0.1",
"private": true,
"scripts": {
"start": "node node_modules/react-native/local-cli/cli.js start",
"test": "jest",
"ios": "./node_modules/.bin/react-native run-ios",
"android": "./node_modules/.bin/react-native run-android",
"bundle:ios": "react-native bundle --entry-file index.js --platform ios --dev false --bundle-output ios/main.jsbundle --assets-dest ios",
"bundle:android": "react-native bundle --entry-file index.js --platform android --dev false --bundle-output android/app/src/main/assets/index.android.bundle --assets-dest android/app/src/main/res/",
"build:android": "npm run bundle:android && cd android && ./gradlew assembleRelease",
"make-third-party:1": "cd ./node_modules/react-native/scripts && ./ios-install-third-party.sh",
"make-third-party:2": "cd ./node_modules/react-native/scripts/third-party/glog-0.3.4 && ./configure && make && make install",
"make-third-party": "npm run make-third-party:1 && npm run make-third-party:2",
"configure-app": "npm install && react-native link && npm run make-third-party",
"locales:export": "gulp pot && gulp locales:export",
"locales:import": "gulp locales:import",
"postversion": "react-native-version"
},
"dependencies": {
"axios": "0.18.0",
"bignumber.js": "8.0.1",
"cryptocurrency-icons": "^0.10.1",
"formik": "1.4.2",
"gettext-extractor": "^3.4.3",
"i18n-js": "3.1.0",
"kuna-sdk": "^0.4.0-beta.6",
"lodash": "4.17.10",
"mkdirp-sync": "^0.0.3",
"mobx": "5.8.0",
"mobx-react": "5.4.3",
"moment": "2.23.0",
"node-libs-react-native": "1.0.2",
"numeral": "2.0.6",
"querystring": "0.2.0",
"react": "16.8.3",
"react-native": "0.56.1",
"react-native-crypto": "2.1.2",
"react-native-device-info": "0.22.4",
"react-native-firebase": "5.2.2",
"react-native-gesture-handler": "1.0.15",
"react-native-languages": "3.0.1",
"react-native-markdown-renderer": "3.2.8",
"react-native-randombytes": "3.5.1",
"react-native-rate": "^1.1.6",
"react-native-splash-screen": "3.1.1",
"react-native-super-grid": "2.4.3",
"react-native-svg": "6.5.2",
"react-native-svg-charts": "5.2.0",
"react-native-svg-icon": "0.8.1",
"react-native-tab-view": "1.3.0",
"react-native-vector-icons": "6.3.0",
"react-navigation": "2.12.1",
"react-redux": "5.0.7",
"react-router": "4.3.1",
"react-router-native": "4.3.0",
"recompose": "0.28.2",
"recyclerlistview": "1.3.4",
"redux": "4.0.0",
"sjcl": "1.0.8",
"vm-browserify": "1.1.0",
"yup": "0.26.7"
},
"devDependencies": {
"@babel/plugin-proposal-decorators": "7.2.3",
"@types/es6-promise": "3.3.0",
"@types/i18n-js": "3.0.1",
"@types/lodash": "4.14.116",
"@types/numeral": "0.0.25",
"@types/react": "16.8.4",
"@types/react-native": "0.56.24",
"@types/react-native-svg-charts": "5.0.1",
"@types/react-native-tab-view": "1.0.2",
"@types/react-native-vector-icons": "^4.6.4",
"@types/react-navigation": "2.0.19",
"@types/react-redux": "6.0.6",
"@types/react-router-native": "4.2.3",
"@types/recompose": "0.26.4",
"@types/redux": "3.6.0",
"@types/sjcl": "1.0.28",
"@types/yup": "0.26.4",
"babel-jest": "23.4.2",
"babel-plugin-module-alias": "1.6.0",
"babel-preset-react-native": "5.0.2",
"dotenv": "7.0.0",
"gulp": "3.9.1",
"jest": "23.5.0",
"jsc-android": "236355.1.1",
"metro-react-native-babel-preset": "0.47.0",
"react-native-typescript-transformer": "1.2.10",
"react-native-version": "2.6.6",
"react-test-renderer": "16.4.1",
"ts-jest": "23.1.3",
"typescript": "3.0.1"
},
"jest": {
"preset": "react-native"
},
"rnpm": {
"assets": [
"./assets/fonts"
]
}
}