-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
104 lines (104 loc) · 3.79 KB
/
package.json
File metadata and controls
104 lines (104 loc) · 3.79 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
98
99
100
101
102
103
104
{
"name": "ReactNativeBaseProject",
"version": "0.0.1",
"private": true,
"scripts": {
"android": "react-native run-android",
"ios": "react-native run-ios",
"start": "react-native start",
"compile": "tsc",
"lint": "eslint . --ext .ts,.tsx,.js,.jsx --fix && prettier -c '**/*.{json,yml,md}' --write",
"test": "jest --maxWorkers=50%",
"test:watch": "jest --watch --maxWorkers=25%",
"test:coverage": "jest --collect-coverage",
"madge:cyclic": "madge -c ./",
"verify": "yarn compile && yarn lint && yarn madge:cyclic && yarn test --passWithNoTests",
"e2e:ios": "ts-node ./e2e/scripts/e2e-ios.ts",
"e2e:android": "ts-node ./e2e/scripts/e2e-android.ts",
"e2e": "yarn e2e:ios && yarn e2e:android",
"e2e:ios:ci": "ts-node ./e2e/scripts/e2e-ios-ci.ts",
"e2e:android:ci": "ts-node ./e2e/scripts/e2e-android-ci.ts",
"e2e:ci": "yarn e2e:ios:ci && yarn e2e:android:ci",
"e2e:clean": "detox clean-framework-cache && detox build-framework-cache",
"prepare": "husky install"
},
"dependencies": {
"@react-native-async-storage/async-storage": "~1.17.9",
"@react-native-community/masked-view": "~0.1.11",
"@react-native-community/netinfo": "~9.3.0",
"@react-navigation/native": "~6.0.11",
"@react-navigation/stack": "~6.2.2",
"@sentry/react-native": "^4.2.3",
"@shopify/flash-list": "~1.2.1",
"axios": "^0.27.2",
"color": "^4.2.3",
"i18next": "^21.9.0",
"react": "18.0.0",
"react-i18next": "^11.18.3",
"react-native": "0.69.4",
"react-native-bootsplash": "~4.3.2",
"react-native-gesture-handler": "~2.5.0",
"react-native-localize": "~2.2.3",
"react-native-paper": "^4.12.4",
"react-native-reanimated": "~2.9.1",
"react-native-safe-area-context": "~4.3.1",
"react-native-screens": "~3.15.0",
"recoil": "^0.7.5"
},
"devDependencies": {
"@babel/core": "^7.18.10",
"@babel/plugin-transform-named-capturing-groups-regex": "^7.18.6",
"@babel/preset-typescript": "^7.18.6",
"@babel/runtime": "^7.18.9",
"@testing-library/jest-native": "^4.0.11",
"@testing-library/react-hooks": "^8.0.1",
"@testing-library/react-native": "^11.0.0",
"@types/color": "^3.0.3",
"@types/detox": "^18.1.0",
"@types/jest": "^28.1.6",
"@types/node": "^18.7.3",
"@types/prompts": "^2.0.14",
"@types/react": "^18.0.17",
"@types/react-native": "^0.69.5",
"@types/shelljs": "^0.8.11",
"@typescript-eslint/eslint-plugin": "^5.33.0",
"@typescript-eslint/parser": "^5.33.0",
"axios-mock-adapter": "^1.21.2",
"babel-jest": "^28.1.3",
"babel-loader": "^8.2.5",
"babel-plugin-module-resolver": "^4.1.0",
"detox": "19.9.2",
"eslint": "^8.22.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^8.5.0",
"eslint-import-resolver-typescript": "^3.4.1",
"eslint-plugin-destructuring": "^2.2.1",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jest": "^26.8.3",
"eslint-plugin-jest-formatting": "^3.1.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.30.1",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-native": "^4.0.0",
"eslint-plugin-simple-import-sort": "^7.0.0",
"eslint-plugin-sonarjs": "^0.15.0",
"eslint-plugin-unused-imports": "^2.0.0",
"husky": "^8.0.1",
"jest": "^28.1.3",
"jest-circus": "^28.1.3",
"jest-fetch-mock": "^3.0.3",
"lint-staged": "^13.0.3",
"madge": "^5.0.1",
"metro-react-native-babel-preset": "^0.72.0",
"prettier": "^2.7.1",
"prettier-eslint": "^15.0.1",
"prompts": "^2.4.2",
"react-dom": "18.0.0",
"react-native-typescript-transformer": "^1.2.13",
"react-test-renderer": "18.0.0",
"shelljs": "^0.8.5",
"snapshot-diff": "^0.9.0",
"ts-node": "^10.9.1",
"typescript": "~4.7.4"
}
}