-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.81 KB
/
Copy pathpackage.json
File metadata and controls
57 lines (57 loc) · 1.81 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
{
"name": "EcoTaskApp",
"version": "0.1.0",
"private": true,
"scripts": {
"android": "react-native run-android",
"ios": "react-native run-ios",
"start": "react-native start",
"test": "jest --passWithNoTests --testPathIgnorePatterns='integration' --testPathIgnorePatterns='__mocks__'",
"test:integration": "jest --passWithNoTests --testMatch='**/__tests__/**/*.integration.*'",
"lint": "eslint ."
},
"dependencies": {
"@react-native-community/geolocation": "^3.4.0",
"@react-native-community/netinfo": "^12.0.1",
"@react-navigation/bottom-tabs": "^6.5.0",
"@react-navigation/native": "^6.1.0",
"@react-navigation/native-stack": "^6.9.0",
"@stellar/stellar-sdk": "^15.1.0",
"axios": "^1.17.0",
"nativewind": "^2.0.11",
"react": "18.2.0",
"react-native": "0.73.6",
"react-native-config": "^1.6.1",
"react-native-mmkv": "^2.12.0",
"react-native-safe-area-context": "^4.8.0",
"react-native-screens": "^3.29.0",
"react-native-vision-camera": "^3.8.0",
"tailwindcss": "^3.4.19",
"zustand": "^4.5.0"
},
"devDependencies": {
"@babel/core": "^7.20.0",
"@babel/preset-env": "^7.20.0",
"@babel/runtime": "^7.20.0",
"@react-native/babel-preset": "^0.73.0",
"@react-native/eslint-config": "^0.73.0",
"@react-native/metro-config": "^0.73.0",
"@react-native/typescript-config": "^0.73.0",
"@types/react": "^18.2.0",
"@types/react-native": "^0.73.0",
"babel-plugin-module-resolver": "^5.0.0",
"eslint": "^8.19.0",
"eslint-plugin-prettier": "^5.5.6",
"jest": "^29.7.0",
"metro-react-native-babel-preset": "^0.77.0",
"react-test-renderer": "18.2.0",
"typescript": "5.3.3"
},
"jest": {
"preset": "react-native",
"testPathIgnorePatterns": [
"integration",
"__mocks__"
]
}
}