-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
72 lines (72 loc) · 2.35 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
{
"name": "aim33playground",
"version": "1.0.0",
"main": "node_modules/expo/AppEntry.js",
"scripts": {
"start": "expo start",
"android": "expo run:android",
"ios": "expo run:ios",
"build:android": "expo run:android",
"build:ios": "expo run:ios",
"web": "expo start --web",
"test": "yarn test:lint && yarn test:types && yarn test:unit",
"test:jest": "jest",
"test:lint": "eslint . --ext .js,.ts,.tsx",
"test:types": "tsc --noEmit",
"test:unit": "jest"
},
"dependencies": {
"@emotion/native": "^11.11.0",
"@emotion/react": "^11.11.1",
"@react-native-async-storage/async-storage": "^1.19.3",
"@react-navigation/native": "^6.1.8",
"@react-navigation/stack": "^6.3.18",
"@storybook/react-native": "^6.5.6",
"@tanstack/react-query": "^4.35.7",
"@testing-library/react-native": "^12.3.0",
"@types/react-test-renderer": "^18.0.3",
"expo": "~49.0.13",
"expo-constants": "^14.4.2",
"expo-font": "^11.6.0",
"expo-secure-store": "^12.5.0",
"expo-splash-screen": "^0.22.0",
"expo-status-bar": "~1.6.0",
"jest-snapshot": "^29.7.0",
"nock": "^13.3.3",
"react": "18.2.0",
"react-error-boundary": "^4.0.11",
"react-native": "0.72.5",
"react-native-gesture-handler": "^2.13.1",
"react-native-navigation": "^7.37.0-hotfix.1",
"react-native-paper": "^5.10.6",
"react-native-reanimated": "^3.5.4",
"react-native-safe-area-context": "^4.7.2",
"react-native-svg": "^13.14.0",
"react-native-toast-message": "^2.1.6",
"react-test-renderer": "^18.2.0",
"zod": "^3.22.4"
},
"devDependencies": {
"@babel/core": "^7.20.0",
"@react-native-community/eslint-config": "^3.2.0",
"@testing-library/jest-native": "^5.4.3",
"@types/jest": "^29.5.5",
"@types/react": "~18.2.14",
"@types/react-native": "^0.72.3",
"@typescript-eslint/eslint-plugin": "^6.7.4",
"@typescript-eslint/parser": "^6.7.4",
"eslint": "^8.51.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-jest": "^27.4.2",
"eslint-plugin-prettier": "^5.0.0",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-native": "^4.1.0",
"eslint-plugin-testing-library": "^6.0.2",
"jest": "^29.7.0",
"jest-expo": "^49.0.0",
"jest-watch-typeahead": "^2.2.2",
"prettier": "^3.0.3",
"typescript": "^5.1.3"
},
"private": true
}