-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
57 lines (57 loc) · 1.87 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
{
"name": "lotes",
"version": "1.0.0",
"scripts": {
"start": "expo start --dev-client",
"android": "expo run:android",
"prebuild": "expo prebuild --clean",
"ios": "expo run:ios -d",
"web": "expo start --web",
"lint": "prettier . --check && eslint . --ext .js,.jsx,.ts,.tsx && tsc --noemit",
"lint:fix": "prettier . --write && eslint src --ext .js,.jsx,.ts,.tsx --fix",
"ios:build": "eas build --platform ios",
"ios:submit": "eas submit --platform ios"
},
"dependencies": {
"@react-native-async-storage/async-storage": "1.18.2",
"@react-navigation/elements": "^1.3.21",
"@react-navigation/native": "^6.1.9",
"@react-navigation/native-stack": "^6.9.17",
"axios": "^1.5.1",
"expo": "^49.0.0",
"expo-linking": "~5.0.2",
"expo-splash-screen": "~0.20.5",
"expo-status-bar": "~1.6.0",
"jotai": "^2.0.3",
"lottie-react-native": "^6.4.0",
"react": "18.2.0",
"react-native": "0.72.6",
"react-native-mmkv": "^2.6.3",
"react-native-nfc-manager": "^3.14.12",
"react-native-safe-area-context": "4.6.3",
"react-native-screens": "~3.22.0",
"url-join": "^5.0.0",
"url-parse": "^1.5.10"
},
"devDependencies": {
"@babel/core": "^7.19.3",
"@tsconfig/react-native": "^2.0.3",
"@types/jest": "^29.4.2",
"@types/react": "~18.2.14",
"@types/react-test-renderer": "^18.0.0",
"@types/url-parse": "^1.4.9",
"@typescript-eslint/eslint-plugin": "^6.4.0",
"eslint": "^8.0.1",
"eslint-config-prettier": "^9.0.0",
"eslint-config-standard-with-typescript": "^39.1.1",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-n": "^15.0.0",
"eslint-plugin-prettier": "^5.0.1",
"eslint-plugin-promise": "^6.0.0",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"prettier": "3.0.3",
"typescript": "^5.1.3"
},
"private": true
}