-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.73 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.73 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
48
49
50
51
52
53
54
{
"name": "CurrencyApp",
"version": "0.1.0",
"private": true,
"devDependencies": {
"@babel/core": "^7.1.0",
"@babel/plugin-proposal-decorators": "^7.1.0",
"@babel/runtime": "^7.0.0",
"babel-core": "7.0.0-bridge.0",
"babel-jest": "23.6.0",
"babel-preset-react-native": "5.0.0",
"jest": "23.6.0",
"jest-expo": "^25.1.0",
"metro": "^0.38.1",
"metro-core": "^0.38.1",
"metro-react-native-babel-preset": "0.49.0",
"react-test-renderer": "16.6.0-alpha.8af6728"
},
"scripts": {
"start": "react-native start",
"android": "react-native run-android",
"android-dev": "react-native bundle --platform android --dev false --entry-file index.js --bundle-output android/app/src/main/assets/index.android.bundle --assets-dest android/app/src/main/res && npm run android",
"android-deploy": "cd android && ./gradlew assembleRelease",
"ios": "react-native run-ios",
"test": "node node_modules/jest/bin/jest.js --watch"
},
"resolutions": {
"babel-plugin-transform-object-rest-spread": "^7.0.0-beta.3"
},
"jest": {
"preset": "react-native"
},
"dependencies": {
"@babel/plugin-proposal-optional-chaining": "^7.0.0",
"@expo/vector-icons": "^6.2.2",
"color": "^3.0.0",
"expo": "^25.0.0",
"jest": "^22.2.2",
"moment": "^2.20.1",
"numeral": "^2.0.6",
"prop-types": "^15.6.0",
"react": "16.6.0-alpha.8af6728",
"react-native": "0.57.4",
"react-native-dropdownalert": "^3.1.2",
"react-native-extended-stylesheet": "^0.8.0",
"react-native-rename": "^2.2.2",
"react-navigation": "^2.12.1",
"react-redux": "^5.1.1",
"redux": "^3.7.2",
"redux-logger": "^3.0.6",
"redux-persist": "^5.6.12",
"redux-thunk": "^2.2.0"
}
}