-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
101 lines (101 loc) · 3.42 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
98
99
100
101
{
"name": "rnmusicplayer",
"version": "0.0.1",
"private": true,
"scripts": {
"android": "npx react-native run-android",
"start": "npx react-native start",
"ios": "npx react-native run-ios --scheme \"developScheme\" ",
"ios:build": "npx react-native run-ios --scheme \"developScheme\" --derivedDataPath ios/build",
"staging": "cd android && ./gradlew assembleStaging && open app/build/outputs/apk/staging && cd ..",
"release": "cd android && ./gradlew assembleRelease && open app/build/outputs/apk/release && cd ..",
"test": "jest",
"lint": "eslint . --ext .js,.jsx,.ts,.tsx",
"detox:ios": "yarn detox test --configuration ios"
},
"dependencies": {
"@apollo/client": "^3.4.13",
"@react-native-community/audio-toolkit": "^2.0.3",
"@react-native-community/masked-view": "^0.1.11",
"@react-native-community/slider": "^4.1.7",
"@react-navigation/native": "^6.0.2",
"@react-navigation/native-stack": "^6.1.0",
"@react-navigation/stack": "^6.0.7",
"axios": "^0.21.4",
"graphql": "^15.6.0",
"moment": "^2.29.1",
"react": "17.0.2",
"react-native": "0.65.1",
"react-native-config": "^1.4.4",
"react-native-extended-stylesheet": "^0.12.0",
"react-native-gesture-handler": "^1.10.3",
"react-native-linear-gradient": "^2.5.6",
"react-native-progress": "^5.0.0",
"react-native-reanimated": "^2.2.2",
"react-native-safe-area-context": "^3.3.2",
"react-native-screens": "^3.7.2",
"react-native-svg": "^12.1.1",
"react-native-webview": "^11.13.0"
},
"devDependencies": {
"@babel/core": "^7.12.9",
"@babel/runtime": "^7.12.5",
"@react-native-community/eslint-config": "^2.0.0",
"@testing-library/jest-native": "^4.0.2",
"@testing-library/react-native": "^7.2.0",
"@types/detox": "^17.14.2",
"@types/jest": "^26.0.23",
"@types/react-native": "^0.65.0",
"@types/react-test-renderer": "^17.0.1",
"@typescript-eslint/eslint-plugin": "^4.31.2",
"@typescript-eslint/parser": "^4.31.2",
"babel-eslint": "^10.1.0",
"babel-jest": "^26.6.3",
"babel-plugin-inline-import": "^3.0.0",
"babel-plugin-module-resolver": "^4.1.0",
"babel-plugin-root-import": "^6.6.0",
"detox": "^18.22.0",
"eslint": "^7.14.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-config-airbnb-typescript": "^14.0.0",
"eslint-import-resolver-typescript": "^2.5.0",
"eslint-plugin-import": "^2.24.2",
"eslint-plugin-import-helpers": "^1.1.0",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.26.0",
"eslint-plugin-react-hooks": "^4.2.0",
"jest": "^26.6.3",
"jest-circus": "^27.2.4",
"metro-react-native-babel-preset": "^0.66.0",
"prettier": "^2.4.1",
"prettier-eslint": "^13.0.0",
"react-native-codegen": "^0.0.7",
"react-test-renderer": "17.0.2",
"typescript": "^3.8.3"
},
"resolutions": {
"@types/react": "^17"
},
"jest": {
"preset": "react-native",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json",
"node"
],
"setupFiles": [
"./node_modules/react-native-gesture-handler/jestSetup.js"
],
"setupFilesAfterEnv": [
"@testing-library/jest-native/extend-expect"
],
"transformIgnorePatterns": [
"node_modules/(?!(jest-)?@?react-native|@react-native-community|@react-navigation)"
]
}
}