This repository has been archived by the owner on Feb 9, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 14
/
package.json
87 lines (87 loc) · 3.11 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
{
"name": "examplewixapp",
"version": "0.0.1",
"scripts": {
"start": "react-native start --reset-cache",
"test": "jest",
"start:android": "react-native run-android",
"start:ios": "react-native run-ios",
"format": "prettier --write '*/**/*.{ts,tsx,css,md,json}'",
"lint:css": "stylelint '**/*.{ts,tsx}'",
"lint:ts": "eslint --ext .ts,.tsx src",
"detox:build:ios": "detox build e2e --configuration ios.sim.release",
"detox:test:ios": "detox test e2e --configuration ios.sim.release --cleanup --debug-synchronization 200",
"detox:build:android": "detox build -c android.emu.debug",
"detox:test:android": "detox test -c android.emu.debug"
},
"dependencies": {
"@react-native-community/async-storage": "^1.12.1",
"formik": "^2.2.1",
"native-base": "^2.13.14",
"react": "16.9.0",
"react-native": "0.61.5",
"react-native-config": "^1.3.3",
"react-native-navigation": "4.4.0",
"styled-components": "^5.2.0",
"styled-is": "^1.3.0",
"yup": "^0.29.3"
},
"devDependencies": {
"@babel/core": "^7.12.3",
"@babel/runtime": "^7.12.0",
"@code-quality/commitlint-config": "^1.1.0",
"@code-quality/eslint-config-jest": "^1.1.0",
"@code-quality/eslint-config-react-native": "^1.4.0",
"@code-quality/eslint-config-typescript": "^1.11.0",
"@code-quality/prettier-config": "^2.1.0",
"@code-quality/stylelint-styled-components-react-native-config": "^1.3.0",
"@commitlint/cli": "^11.0.0",
"@react-native-community/eslint-config": "^2.0.0",
"@testing-library/react-native": "^7.0.2",
"@types/detox": "^16.4.1",
"@types/jest": "^26.0.15",
"@types/node": "^14.14.3",
"@types/react": "^16.9.53",
"@types/react-native": "^0.61.12",
"@types/react-test-renderer": "^16.9.3",
"@types/styled-components": "^5.1.4",
"@types/yup": "^0.29.8",
"babel-jest": "^26.6.0",
"babel-plugin-inline-import": "^3.0.0",
"babel-plugin-module-resolver": "^4.0.0",
"detox": "15.1.4",
"eslint": "^7.12.0",
"eslint-config-prettier": "^6.14.0",
"eslint-plugin-import": "^2.22.1",
"husky": "^4.3.0",
"jest": "^26.6.0",
"lint-staged": "^10.5.0",
"metro-react-native-babel-preset": "^0.63.0",
"prettier": "^2.1.2",
"react-test-renderer": "^16.13.0",
"stylelint": "^13.7.2",
"stylelint-config-prettier": "^8.0.2",
"typescript": "^4.0.3"
},
"jest": {
"preset": "react-native"
},
"detox": {
"configurations": {
"android.emu.debug": {
"binaryPath": "android/app/build/outputs/apk/debug/app-debug.apk",
"build":
"cd android && ./gradlew assembleDebug assembleAndroidTest -DtestBuildType=debug && cd ..",
"type": "android.emulator",
"name": "emu"
},
"ios.sim.release": {
"binaryPath": "ios/build/Build/Products/Release-iphonesimulator/examplewixapp.app",
"build": "xcodebuild -workspace ios/examplewixapp.xcworkspace -scheme examplewixapp -configuration Release -sdk iphonesimulator -derivedDataPath ios/build",
"type": "ios.simulator",
"name": "iPhone 8"
}
},
"test-runner": "jest"
}
}