-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
97 lines (97 loc) · 3.27 KB
/
package.json
File metadata and controls
97 lines (97 loc) · 3.27 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
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
{
"name": "AmazonHandmadeRN",
"version": "10.0.2",
"private": true,
"devDependencies": {
"babel-eslint": "^10.0.1",
"babel-jest": "24.7.1",
"eslint": "^5.16.0",
"eslint-plugin-promise": "^4.1.1",
"eslint-plugin-react": "^7.12.4",
"eslint-plugin-react-native": "^3.6.0",
"fs-extra": "^7.0.1",
"jest": "24.7.1",
"metro-react-native-babel-preset": "^0.53.1",
"mocha": "^6.1.3",
"react-test-renderer": "16.8.6",
"redux-immutable-state-invariant": "^2.1.0",
"replace-in-file": "^3.4.4",
"schedule": "^0.5.0"
},
"scripts": {
"android": "react-native run-android",
"ios": "react-native run-ios",
"apk": "cd android && ./gradlew assembleRelease",
"rename": "node ./bin/rename.js",
"start": "react-native start",
"test": "jest",
"test-coverage": "jest --coverage --collectCoverageFrom=src/**/*.{js,jsx}",
"test:e2e": "detox test -c ios.sim.debug",
"lint": "eslint *.js src/**/**/*.js functions/src/*.ts"
},
"jest": {
"preset": "react-native",
"coverageReporters": [
"html",
"text",
"text-summary"
],
"transform": {
"^.+\\.js$": "<rootDir>/node_modules/react-native/jest/preprocessor.js"
}
},
"detox": {
"test-runner": "mocha",
"specs": "e2e",
"runner-config": "e2e/mocha.opts",
"configurations": {
"ios.sim.release": {
"binaryPath": "ios/build/Build/Products/Release-iphonesimulator/AmazonHandmadeRN.app",
"build": "export RCT_NO_LAUNCH_PACKAGER=true && xcodebuild -project ios/AmazonHandmadeRN.xcodeproj -UseNewBuildSystem=NO -scheme AmazonHandmadeRN -configuration Release -sdk iphonesimulator -derivedDataPath ios/build -quiet",
"type": "ios.simulator",
"name": "iPhone X"
},
"ios.sim.debug": {
"binaryPath": "ios/build/Build/Products/Debug-iphonesimulator/AmazonHandmadeRN.app",
"build": "xcodebuild -project ios/AmazonHandmadeRN.xcodeproj -UseNewBuildSystem=NO -scheme AmazonHandmadeRN -configuration Debug -sdk iphonesimulator -derivedDataPath ios/build",
"type": "ios.simulator",
"name": "iPhone X"
}
}
},
"dependencies": {
"native-base": "^2.12.1",
"react": "16.8.4",
"react-native": "0.59.4",
"react-native-action-button": "^2.8.5",
"react-native-dropdownalert": "^3.10.0",
"react-native-elements": "^1.1.0",
"react-native-firebase": "^5.3.1",
"react-native-gesture-handler": "^1.1.0",
"react-native-gifted-chat": "^0.7.3",
"react-native-image-crop-picker": "^0.23.1",
"react-native-keyboard-aware-scrollview": "^2.0.0",
"react-native-linear-gradient": "^2.5.4",
"react-native-login-with-amazon": "^1.1.8",
"react-native-motion": "^1.0.2",
"react-native-side-drawer": "^1.0.9",
"react-native-simple-radio-button": "^2.7.3",
"react-native-super-grid": "^3.0.4",
"react-native-vector-icons": "^6.4.2",
"react-navigation": "^3.8.1",
"react-navigation-fluid-transitions": "^0.3.1",
"react-navigation-props-mapper": "^1.0.1",
"react-phone-number-input": "^2.3.11",
"react-redux": "^7.0.2",
"redux": "^4.0.1",
"redux-logger": "^3.0.6",
"redux-persist": "^5.10.0",
"redux-thunk": "^2.3.0"
},
"rnpm": {
"assets": [
"./assets/fonts/",
"./assets/images/"
]
}
}