-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathpackage.json
93 lines (93 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
{
"name": "wordsreminder",
"version": "1.2.1",
"private": true,
"author": "AkiVer",
"repository": "https://github.com/akiver/wordsreminder",
"license": "MIT",
"scripts": {
"android": "react-native run-android",
"android:release": "yarn android --variant=release",
"e2e:build:ios": "RN_SRC_EXT=e2e.ts yarn ios && detox build -c ios.sim.debug",
"e2e:build:ios:release": "RN_SRC_EXT=e2e.ts yarn ios:release && detox build -c ios.sim.release",
"e2e:test:ios": "PLATFORM=ios detox test -c ios.sim.debug",
"e2e:test:ios:release": "PLATFORM=ios detox test -c ios.sim.release",
"e2e:build:android": "detox build -c android.emu.debug",
"e2e:build:android:release": "detox build -c android.emu.release",
"e2e:test:android": " cross-env PLATFORM=android detox test -c android.emu.debug",
"e2e:test:android:release": "cross-env PLATFORM=android detox test -c android.emu.release",
"e2e:start": "cross-env RN_SRC_EXT=e2e.ts yarn start",
"format": "prettier --write \"**\"",
"ios": "react-native run-ios",
"ios:release": "yarn ios --configuration Release",
"lint": "eslint \"**\"",
"migrate": "ts-node -P migrations/tsconfig.json migrations/index.ts",
"pod": "pushd ios && pod install && popd",
"pod:update": "pushd ios && pod update && popd",
"start": "react-native start",
"t": "yarn test",
"test": "jest",
"tsc": "tsc",
"tw": "jest --watch"
},
"dependencies": {
"@react-native-async-storage/async-storage": "1.17.5",
"@react-native-firebase/app": "14.9.4",
"@react-native-firebase/auth": "14.9.4",
"@react-native-firebase/firestore": "14.9.4",
"@react-native-masked-view/masked-view": "0.2.6",
"@react-navigation/bottom-tabs": "6.3.1",
"@react-navigation/elements": "1.3.3",
"@react-navigation/native": "6.0.10",
"@react-navigation/stack": "6.2.1",
"memoize-one": "6.0.0",
"react": "17.0.2",
"react-native": "0.68.2",
"react-native-bootsplash": "4.1.5",
"react-native-config": "1.4.5",
"react-native-gesture-handler": "2.4.2",
"react-native-reanimated": "2.8.0",
"react-native-safe-area-context": "4.2.5",
"react-native-screens": "3.13.1",
"react-native-secure-key-store": "2.0.9",
"react-native-svg": "12.3.0",
"react-native-touch-id": "4.4.1"
},
"devDependencies": {
"@arkweid/lefthook": "0.7.7",
"@babel/core": "7.18.0",
"@babel/runtime": "7.18.0",
"@google-cloud/firestore": "5.0.2",
"@testing-library/jest-native": "4.0.5",
"@testing-library/react-native": "9.1.0",
"@types/jest": "27.5.1",
"@types/node": "17.0.35",
"@types/react": "17.0.39",
"@types/react-native": "0.67.7",
"@types/react-test-renderer": "17.0.2",
"@typescript-eslint/eslint-plugin": "5.25.0",
"@typescript-eslint/parser": "5.25.0",
"babel-jest": "28.1.0",
"babel-plugin-module-resolver": "4.1.0",
"cross-env": "7.0.3",
"detox": "19.6.9",
"dotenv": "16.0.1",
"eslint": "8.16.0",
"eslint-config-prettier": "8.5.0",
"eslint-plugin-prettier": "4.0.0",
"eslint-plugin-react": "7.30.0",
"eslint-plugin-react-hooks": "4.5.0",
"firebase-admin": "10.2.0",
"jest": "28.1.0",
"jest-circus": "28.1.0",
"metro-react-native-babel-preset": "0.70.3",
"prettier": "2.6.2",
"react-test-renderer": "17.0.2",
"ts-jest": "28.0.2",
"ts-node": "10.8.0",
"typescript": "4.6.4"
},
"resolutions": {
"@types/react": "17.0.39"
}
}