-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.2 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.2 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
{
"name": "hackerearth",
"version": "1.0.0",
"main": "node_modules/expo/AppEntry.js",
"scripts": {
"start": "expo start --tunnel",
"test": "jest --testTimeout=10000 --verbose --ci --testResultsProcessor=\"jest-junit\"",
"sample_tests": "jest --testTimeout=10000 --verbose --ci --testResultsProcessor=\"jest-junit\" -- sample.test.js",
"main_tests": "jest --testTimeout=10000 --verbose --ci --testResultsProcessor=\"jest-junit\" -- main.test.js"
},
"dependencies": {
"@expo/ngrok": "4.1.0",
"axios": "1.6.8",
"expo": "51.0.31",
"expo-status-bar": "~1.12.1",
"jest": "29.4.0",
"jest-expo": "51.0.4",
"jest-junit": "16.0.0",
"react": "18.2.0",
"react-native": "0.74.5"
},
"devDependencies": {
"@babel/core": "^7.24.5",
"@testing-library/react-native": "12.2.2",
"react-test-renderer": "18.2.0"
},
"private": true,
"jest": {
"preset": "jest-expo"
},
"jest-junit": {
"suiteName": "jest tests",
"outputDirectory": ".",
"outputName": "xunitreport.xml",
"uniqueOutputName": "false",
"classNameTemplate": "{classname}",
"titleTemplate": "{title}",
"ancestorSeparator": " › ",
"usePathForSuiteName": "true"
}
}