-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
88 lines (88 loc) · 3.04 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
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
{
"name": "lto-field-work",
"version": "1.0.0",
"private": false,
"scripts": {
"start": "npx expo start --dev-client",
"android": "react-native run-android",
"ios": "react-native run-ios",
"web": "npx expo start --web",
"bundle:ios": "npx react-native bundle --entry-file='./index.js' --platform='ios' --bundle-output='./ios/ltofieldwork/main.jsbundle' --dev=false --assets-dest='./ios'",
"eject": "npx expo prebuild",
"build:tailwind": "tailwindcss --input input.css --output tailwind.css --no-autoprefixer && tailwind-rn",
"build:translations": "node build-translations.js",
"test": "jest --verbose --coverage",
"coverage": "jest --verbose --coverage && open ./coverage/lcov-report/index.html"
},
"dependencies": {
"@react-native-async-storage/async-storage": "1.17.11",
"@react-native-community/checkbox": "0.5.14",
"@react-native-community/netinfo": "9.3.5",
"@react-native-community/slider": "4.2.4",
"@react-native-picker/picker": "2.4.8",
"@react-navigation/bottom-tabs": "6.5.3",
"@react-navigation/drawer": "6.3.0",
"@react-navigation/native": "6.0.8",
"@react-navigation/stack": "6.1.0",
"@types/react-native-dotenv": "0.2.0",
"axios": "0.27.2",
"expo": "~47.0.14",
"expo-build-properties": "0.4.1",
"expo-cli": "6.2.1",
"expo-dev-client": "2.0.1",
"expo-file-system": "15.1.1",
"expo-image-picker": "14.0.2",
"expo-localization": "14.0.0",
"expo-media-library": "15.0.0",
"expo-splash-screen": "~0.17.5",
"expo-status-bar": "1.4.2",
"form-data": "4.0.0",
"i18n-js": "4.2.2",
"mime": "3.0.0",
"react": "18.1.0",
"react-dom": "18.1.0",
"react-native": "0.70.8",
"react-native-bouncy-checkbox": "2.1.10",
"react-native-flash-message": "0.2.1",
"react-native-gesture-handler": "2.8.0",
"react-native-get-random-values": "1.8.0",
"react-native-image-picker": "4.10.3",
"react-native-input-spinner": "1.7.12",
"react-native-keyboard-aware-scroll-view": "0.9.5",
"react-native-modal": "13.0.1",
"react-native-picker-select": "8.0.4",
"react-native-progress": "^5.0.0",
"react-native-reanimated": "2.12.0",
"react-native-safe-area-context": "4.4.1",
"react-native-screens": "3.18.0",
"react-native-splash-screen": "3.3.0",
"react-native-uuid": "^2.0.1",
"react-native-web": "~0.18.9",
"tailwind-rn": "4.1.0",
"twrnc": "3.0.1"
},
"devDependencies": {
"@babel/core": "7.20.12",
"@types/react": "18.0.27",
"@types/react-native": "0.71.0",
"autoprefixer": "10.3.7",
"babel-plugin-module-resolver": "5.0.0",
"csv-parse": "5.3.3",
"metro-react-native-babel-preset": "0.75.0",
"postcss": "8.4.6",
"tailwindcss": "3.0.24",
"typescript": "4.9.4"
},
"jest": {
"preset": "react-native",
"cacheDirectory": "./cache",
"coverageThreshold": {
"global": {
"statements": 80
}
},
"transformIgnorePatterns": [
"/node_modules/(?!react-native|react-clone-referenced-element|react-navigation)"
]
}
}