-
-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathpackage.json
More file actions
101 lines (101 loc) · 3.54 KB
/
Copy pathpackage.json
File metadata and controls
101 lines (101 loc) · 3.54 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
{
"name": "spacecraft",
"version": "2.1.0",
"license": "MIT",
"main": "node_modules/expo/AppEntry.js",
"scripts": {
"start": "expo start",
"android": "expo start --android",
"ios": "expo start --ios",
"web": "expo start --web",
"eject": "expo eject",
"lint": "eslint --ignore-path .gitignore --ext .js,.ts,.tsx .",
"test": "jest",
"test:watch": "jest --watch",
"build-storybook": "build-storybook",
"storybook-generate": "sb-rn-get-stories",
"storybook-watch": "sb-rn-watcher",
"storybook": "sb-rn-get-stories && STORYBOOK_ENABLED='true' expo start",
"storybook:ios": "sb-rn-get-stories && STORYBOOK_ENABLED='true' expo start --ios",
"storybook:android": "sb-rn-get-stories && STORYBOOK_ENABLED='true' expo start --android",
"e2e": "maestro test e2e/process.yaml",
"release": "./bin/release.sh"
},
"jest": {
"preset": "jest-expo",
"setupFilesAfterEnv": [
"<rootDir>/jest.setup.js"
]
},
"dependencies": {
"@dev-plugins/react-navigation": "^0.0.6",
"@expo/metro-runtime": "~4.0.1",
"@expo/vector-icons": "^14.0.0",
"@react-native-async-storage/async-storage": "1.23.1",
"@react-native-community/masked-view": "0.1.11",
"@react-native-community/netinfo": "11.4.1",
"@react-navigation/bottom-tabs": "^7.2.0",
"@react-navigation/native": "^7.0.14",
"@react-navigation/native-stack": "^7.2.0",
"@tanstack/react-query": "^5.17.19",
"@types/react-currency-format": "^1.0.4",
"babel-core": "^7.0.0-bridge.0",
"babel-jest": "^29.5.0",
"deepmerge": "^4.3.1",
"expo": "^52.0.27",
"expo-application": "~6.0.2",
"expo-constants": "~17.0.4",
"expo-image": "~2.0.4",
"expo-linking": "~7.0.4",
"expo-status-bar": "~2.0.1",
"expo-store-review": "~8.0.1",
"expo-updates": "~0.26.13",
"expo-web-browser": "~14.0.2",
"react": "18.3.1",
"react-currency-format": "^1.1.0",
"react-dom": "18.3.1",
"react-native": "0.76.6",
"react-native-gesture-handler": "~2.20.2",
"react-native-offline": "^6.0.0",
"react-native-paper": "^5.12.2",
"react-native-reanimated": "~3.16.1",
"react-native-safe-area-context": "4.12.0",
"react-native-screens": "~4.4.0",
"react-native-vector-icons": "^10.0.3",
"react-native-web": "~0.19.10",
"rn-placeholder": "^3.0.3"
},
"devDependencies": {
"@babel/core": "^7.24.0",
"@babel/preset-typescript": "^7.18.6",
"@react-native-community/datetimepicker": "8.2.0",
"@react-native-community/slider": "4.5.5",
"@storybook/core-common": "^7.6.10",
"@storybook/react-native": "^7.6.15",
"@storybook/react-native-server": "^6.5.8",
"@tanstack/eslint-plugin-query": "^5.53.0",
"@testing-library/jest-native": "^5.4.3",
"@testing-library/react-native": "^12.4.3",
"@types/jest": "^29.5.4",
"@types/react": "~18.3.12",
"@types/react-dom": "~18.3.1",
"@typescript-eslint/eslint-plugin": "^7.11.0",
"@typescript-eslint/parser": "^7.11.0",
"babel-loader": "^9.1.3",
"babel-plugin-module-resolver": "^5.0.0",
"babel-plugin-transform-remove-console": "^6.9.4",
"eslint": "^8.56.0",
"eslint-config-expo": "~8.0.1",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-perfectionist": "^3.3.0",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-query": "^0.9.1",
"eslint-plugin-react": "^7.34.2",
"eslint-plugin-react-native": "^4.1.0",
"eslint-plugin-testing-library": "^6.3.0",
"jest": "^29.6.4",
"jest-expo": "~52.0.3",
"prettier": "^3.2.5",
"typescript": "~5.3.3"
}
}