-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 1017 Bytes
/
Copy pathpackage.json
File metadata and controls
37 lines (37 loc) · 1017 Bytes
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
{
"name": "memory-game",
"version": "1.0.0",
"main": "index.ts",
"dependencies": {
"@react-native-async-storage/async-storage": "^1.23.0",
"@react-navigation/native": "^7.0.0",
"@react-navigation/stack": "^7.0.0",
"babel-preset-expo": "~12.0.0",
"expo": "~56.0.12",
"react": "19.2.3",
"react-dom": "19.2.3",
"react-native": "0.85.3",
"react-native-safe-area-context": "~5.0.0",
"react-native-screens": "~4.5.0",
"react-native-web": "~0.21.0"
},
"devDependencies": {
"@testing-library/react-native": "^13.3.3",
"@types/jest": "^29.5.14",
"@types/react": "~19.2.2",
"@types/react-test-renderer": "^19.1.0",
"jest": "^29.7.0",
"react-test-renderer": "^19.2.3",
"ts-jest": "^29.4.11",
"typescript": "~6.0.3"
},
"scripts": {
"start": "expo start",
"android": "expo start --android",
"ios": "expo start --ios",
"web": "expo start --web",
"test": "jest",
"typecheck": "tsc --noEmit"
},
"private": true
}