-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
125 lines (125 loc) · 3.88 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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
{
"name": "sustainabyte",
"description": "An Expo/React Native app for encouraging sustainable eating",
"version": "1.3.0",
"license": "MIT",
"private": true,
"repository": {
"type": "git",
"url": "https://github.com/josh-mcfarlin/sustainabyte.git"
},
"bugs": {
"url": "https://github.com/josh-mcfarlin/sustainabyte/issues"
},
"author": {
"name": "Josh McFarlin",
"email": "[email protected]"
},
"lint-staged": {
"*.@(js|ts|tsx)": [
"npm run lint",
"npm run format"
]
},
"scripts": {
"lint": "eslint --fix --ext ts --ext tsx --ext js .",
"format": "prettier --write **/*.{js,ts,tsx,json}",
"start": "expo start",
"android": "expo start --android",
"ios": "expo start --ios",
"web": "expo start --https --web",
"publish-app": "expo publish",
"deploy-ios": "npx expo-optimize && expo build:ios",
"deploy-web": "expo build:web && cd web-build && vercel",
"test": "jest",
"prepare": "husky install",
"postinstall": "patch-package"
},
"dependencies": {
"@expo/vector-icons": "^12.0.0",
"@gorhom/bottom-sheet": "^4.1.1",
"@react-native-async-storage/async-storage": "~1.15.0",
"@react-native-community/datetimepicker": "3.5.2",
"@react-navigation/bottom-tabs": "^6.0.5",
"@react-navigation/native": "^6.0.2",
"@react-navigation/native-stack": "^6.1.0",
"@risingstack/react-easy-state": "^6.3.0",
"axios": "^0.24.0",
"dayjs": "^1.10.7",
"expo": "^43.0.0",
"expo-app-loading": "~1.2.1",
"expo-asset": "~8.4.3",
"expo-auth-session": "~3.4.2",
"expo-camera": "~12.0.3",
"expo-crypto": "~10.0.3",
"expo-file-system": "~13.0.3",
"expo-font": "~10.0.3",
"expo-image-manipulator": "~10.1.2",
"expo-image-picker": "~11.0.3",
"expo-linear-gradient": "~10.0.3",
"expo-location": "~13.0.4",
"expo-random": "~12.0.1",
"expo-secure-store": "~11.0.3",
"expo-status-bar": "~1.1.0",
"expo-web-browser": "~10.0.3",
"faker": "^5.5.3",
"i18n-postal-address": "^0.4.3",
"inflected": "^2.1.0",
"jwt-decode": "^3.1.2",
"lodash": "^4.17.21",
"mime": "^3.0.0",
"miragejs": "^0.1.42",
"modal-enhanced-react-native-web": "^0.2.0",
"prop-types": "^15.7.2",
"qs": "^6.10.1",
"react": "17.0.1",
"react-dom": "17.0.1",
"react-native": "0.64.2",
"react-native-circular-progress": "^1.3.7",
"react-native-gesture-handler": "~1.10.2",
"react-native-keyboard-aware-scroll-view": "^0.9.5",
"react-native-maps": "0.28.0",
"react-native-modal-datetime-picker": "^13.0.0",
"react-native-reanimated": "~2.2.0",
"react-native-safe-area-context": "3.3.2",
"react-native-screens": "~3.8.0",
"react-native-svg": "12.1.1",
"react-native-web": "0.17.1",
"react-native-web-maps": "^0.3.0",
"react-query": "^3.25.1",
"react-singleton-hook": "^3.2.1",
"rn-range-slider": "^2.1.1",
"uuid": "^3.4.0"
},
"devDependencies": {
"@babel/core": "^7.12.9",
"@expo/webpack-config": "^0.16.2",
"@types/faker": "^5.5.8",
"@types/jest": "^27.0.2",
"@types/lodash": "^4.14.176",
"@types/mime": "^2.0.3",
"@types/qs": "^6.9.7",
"@types/react": "~17.0.21",
"@types/react-native": "~0.64.12",
"@types/uuid": "^8.3.1",
"@typescript-eslint/eslint-plugin": "^4.31.0",
"@typescript-eslint/parser": "^4.31.0",
"eslint": "^7.32.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.24.2",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.25.1",
"eslint-plugin-react-hooks": "^4.2.0",
"expo-cli": "^4.13.0",
"husky": "^7.0.2",
"jest": "^27.3.1",
"jest-expo": "^43.0.1",
"lint-staged": "^11.1.2",
"patch-package": "^6.4.7",
"prettier": "^2.4.0",
"ts-jest": "^27.0.7",
"typescript": "~4.3.5"
}
}