-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
66 lines (66 loc) · 1.96 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
{
"name": "ames-ride",
"version": "1.3.0",
"license": "GNU3",
"scripts": {
"start": "cross-env NODE_ENV=development expo start",
"android": "cross-env NODE_ENV=development expo run:android",
"ios": "cross-env NODE_ENV=development expo run:ios",
"web": "cross-env NODE_ENV=development expo start --web",
"lint": "eslint .",
"prepare": "husky install"
},
"dependencies": {
"@aveq-research/localforage-asyncstorage-driver": "^3.0.1",
"@expo/metro-config": "^0.10.7",
"@react-native-async-storage/async-storage": "1.18.2",
"@react-navigation/native": "^6.0.13",
"@react-navigation/native-stack": "^6.9.1",
"color": "^4.2.3",
"date-fns": "^2.29.3",
"expo": "^49.0.9",
"expo-clipboard": "~4.3.1",
"expo-constants": "~14.4.2",
"expo-dev-client": "~2.4.8",
"expo-location": "~16.1.0",
"expo-splash-screen": "~0.20.5",
"expo-status-bar": "~1.6.0",
"expo-updates": "~0.18.12",
"localforage": "^1.10.0",
"prop-types": "^15.8.1",
"react": "18.2.0",
"react-native": "0.72.4",
"react-native-gesture-handler": "~2.12.0",
"react-native-maps": "1.7.1",
"react-native-paper": "^5.10.4",
"react-native-progress": "^5.0.0",
"react-native-root-toast": "^3.3.1",
"react-native-safe-area-context": "4.6.3",
"react-native-screens": "^3.25.0",
"react-native-svg": "13.9.0",
"react-native-swipe-gestures": "^1.0.5",
"react-native-vector-icons": "^9.2.0",
"recoil": "^0.7.5",
"socket.io-client": "^4.5.4"
},
"devDependencies": {
"@babel/core": "^7.12.9",
"cross-env": "^7.0.3",
"eslint": "^8.24.0",
"eslint-config-universe": "^11.1.0",
"husky": "^8.0.1",
"lint-staged": "^13.0.3",
"prettier": "^2.7.1"
},
"resolutions": {
"@types/react": "~18.0.0"
},
"eslintConfig": {
"extends": "universe/native"
},
"private": true,
"lint-staged": {
"*.js": "eslint --cache --fix",
"*.{js,css,md}": "prettier --write"
}
}