generated from reime005/ReactNativeAnimatedBase
-
Notifications
You must be signed in to change notification settings - Fork 17
/
package.json
97 lines (97 loc) · 3.36 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
{
"name": "SpaceSeek",
"version": "1.3.0",
"description": "See and search upcoming and previous rocket space launches! Built with React Native, using Detox E2E tests, Fastlane and Github Actions for app store deployment.",
"private": true,
"scripts": {
"android": "react-native run-android",
"ios": "react-native run-ios",
"start": "react-native start",
"test": "jest",
"lint": "eslint src --ext .js,.jsx,.ts,.tsx --fix",
"lint:ci": "eslint src --ext .js,.jsx,.ts,.tsx --quiet",
"commit": "git-cz",
"build:android-debug": "detox build --configuration android.emu.debug",
"build:android-release": "detox build --configuration android.emu.release",
"test:android-release": "detox test --configuration android.emu.release",
"test:android-release-ci": "detox test --configuration android.emu.release -l verbose --workers 2 --headless --record-logs all --take-screenshots all",
"build:ios-release": "ENVFILE=.env detox build --configuration ios.sim.release",
"test:ios-release": "detox test --configuration ios.sim.release -l verbose",
"test:ios-release-ci": "detox test --configuration ios.sim.release -l verbose --workers 2"
},
"dependencies": {
"@react-native-async-storage/async-storage": "^1.15.9",
"@react-native-community/blur": "^3.6.0",
"@react-native-community/masked-view": "^0.1.11",
"@react-navigation/bottom-tabs": "^5.10.0",
"@react-navigation/native": "^5.8.0",
"@react-navigation/stack": "^5.10.0",
"axios": "^0.21.1",
"i18next": "^21.3.3",
"react": "17.0.2",
"react-i18next": "^11.13.0",
"react-native": "0.66.1",
"react-native-config": "1.4.5",
"react-native-fast-image": "^8.5.11",
"react-native-gesture-handler": "~1.10.3",
"react-native-in-app-review": "^3.2.3",
"react-native-maps": "^0.29.3",
"react-native-modal": "^13.0.0",
"react-native-reanimated": "2.2.3",
"react-native-restart": "^0.0.22",
"react-native-safe-area-context": "^3.3.2",
"react-native-safe-area-view": "^1.1.1",
"react-native-screens": "^2.11.0",
"react-native-svg": "^12.1.1",
"styled-components": "^5.3.3",
"zustand": "^3.6.2"
},
"devDependencies": {
"@babel/core": "^7.16.0",
"@babel/runtime": "^7.16.0",
"@react-native-community/eslint-config": "^3.0.1",
"@types/detox": "^17.14.3",
"@types/jest": "^27.0.2",
"@types/react-native": "^0.66.1",
"@types/react-test-renderer": "^17.0.1",
"@types/styled-components": "^5.1.15",
"@typescript-eslint/eslint-plugin": "^5.2.0",
"@typescript-eslint/parser": "^5.2.0",
"axios-mock-adapter": "^1.19.0",
"babel-jest": "^27.3.1",
"detox": "^18.23.1",
"eslint": "^7.32.0",
"git-cz": "^4.8.0",
"husky": "^4.3.0",
"jest": "^27.3.1",
"jest-circus": "^27.3.1",
"jest-styled-components": "^7.0.5",
"lint-staged": "^11.2.6",
"metro-react-native-babel-preset": "^0.66.2",
"react-native-codegen": "^0.0.9",
"react-native-svg-transformer": "^0.14.3",
"react-test-renderer": "17.0.2",
"sanitize-filename": "^1.6.3",
"tslib": "^2.3.1",
"typescript": "^4.4.4"
},
"jest": {
"preset": "react-native",
"setupFiles": [
"./jest.setup.js"
],
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json",
"node"
]
},
"config": {
"commitizen": {
"path": "git-cz"
}
}
}