-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
55 lines (55 loc) · 1.13 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
{
"name": "mocha-remote-expo-example",
"version": "0.1.0",
"private": true,
"main": "index.js",
"scripts": {
"start": "expo start",
"android": "expo start --android",
"ios": "expo start --ios",
"web": "expo start --web",
"test:android": "mocha-remote -- expo start --android",
"test:ios": "mocha-remote -- expo start --ios",
"test:web": "mocha-remote -- expo start --web"
},
"nx": {
"targets": {
"test:android": {
"dependsOn": [
"^build"
]
},
"test:ios": {
"dependsOn": [
"^build"
]
},
"test:web": {
"dependsOn": [
"^build"
]
}
}
},
"dependencies": {
"expo": "~52.0.25",
"expo-status-bar": "~1.12.1",
"mocha-remote-react-native": "1.12.3",
"react": "18.2.0",
"react-native": "0.77.1"
},
"devDependencies": {
"@babel/core": "^7.24.4",
"@react-native/eslint-config": "0.77.0",
"@types/react": "~18.3.1"
},
"eslintConfig": {
"root": true,
"extends": [
"@react-native"
],
"parserOptions": {
"requireConfigFile": false
}
}
}