This repository has been archived by the owner on Jan 19, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
93 lines (93 loc) · 3.14 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
{
"name": "parentssoundboard",
"version": "1.0.4",
"author": {
"email": "[email protected]",
"name": "Michael Hoffmann",
"url": "https://www.mokkapps.de"
},
"repository": {
"type": "git",
"url": "https://github.com/Mokkapps/parents-soundboard"
},
"license": "GPL-3.0-only",
"scripts": {
"start": "react-native start",
"android": "react-native run-android",
"ios": "react-native run-ios",
"test": "jest",
"e2e-build-debug": "detox build --configuration ios.sim.debug",
"e2e-test-debug": "detox test --configuration ios.sim.debug",
"e2e-build-release": "detox build --configuration ios.sim.release",
"e2e-test-release": "detox test --configuration ios.sim.release",
"e2e": "npm run e2e-build-debug && npm run e2e-test-debug"
},
"dependencies": {
"@react-native-community/async-storage": "^1.6.1",
"@react-native-community/geolocation": "^2.0.2",
"ajv": "^6.10.2",
"babel-eslint": "^10.0.3",
"prop-types": "^15.7.2",
"react": "16.8.6",
"react-art": "16.8.3",
"react-dom": "16.8.3",
"react-native": "0.60.5",
"react-native-easy-toast": "^1.2.0",
"react-native-elements": "^1.1.0",
"react-native-email": "^1.0.2",
"react-native-firebase": "^5.5.6",
"react-native-gesture-handler": "^1.4.1",
"react-native-i18n": "^2.0.15",
"react-native-tts": "^3.0.0",
"react-native-vector-icons": "^6.6.0",
"react-native-web": "^0.11.7",
"react-navigation": "^3.12.0",
"react-navigation-header-buttons": "^3.0.2",
"react-redux": "^7.1.1",
"redux": "^4.0.4",
"styled-components": "^4.3.2"
},
"devDependencies": {
"@babel/core": "^7.0.0-beta.47",
"babel-core": "^7.0.0-beta.47",
"babel-jest": "^24.9.0",
"babel-plugin-jest-hoist": "^24.9.0",
"babel-plugin-module-resolver": "^3.2.0",
"babel-preset-env": "^1.7.0",
"babel-preset-jest": "^24.9.0",
"babel-preset-react-native": "^5.0.2",
"detox": "^14.0.3",
"eslint": "^6.2.2",
"eslint-config-airbnb": "^18.0.1",
"eslint-plugin-detox": "^1.0.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-react": "^7.14.3",
"jest": "^24.9.0",
"jest-react-native": "^18.0.0",
"react-test-renderer": "16.9.0"
},
"jest": {
"preset": "react-native",
"testMatch": [
"<rootDir>/app/**/*.test.js"
]
},
"detox": {
"configurations": {
"ios.sim.debug": {
"binaryPath": "ios/build/Build/Products/Debug-iphonesimulator/parentssoundboard.app",
"build": "xcodebuild -workspace ios/parentssoundboard.xcworkspace -scheme parentssoundboard -configuration Debug -sdk iphonesimulator -derivedDataPath ios/build",
"type": "ios.simulator",
"name": "iPhone 8"
},
"ios.sim.release": {
"binaryPath": "ios/build/Build/Products/Release-iphonesimulator/parentssoundboard.app",
"build": "xcodebuild -workspace ios/parentssoundboard.xcworkspace -scheme parentssoundboard -configuration Release -sdk iphonesimulator -derivedDataPath ios/build",
"type": "ios.simulator",
"name": "iPhone 7"
}
},
"test-runner": "jest"
}
}