-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
98 lines (98 loc) · 3.34 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
{
"name": "treefy",
"version": "1.0.0",
"main": "node_modules/expo/AppEntry.js",
"scripts": {
"start": "expo start",
"android": "expo start --android",
"ios": "expo start --ios",
"web": "expo start --web",
"eject": "expo eject",
"prepare": "husky install",
"lint": "eslint --ext .ts,.tsx src/* --fix",
"prettier": "prettier --write src/*",
"test": "jest --coverage=false --passWithNoTests --runInBand",
"test:unit:dev": "npm test -- --watch",
"test:unit:ci": "npm test -- --coverage",
"test:update:snap": "npm test -- -u"
},
"dependencies": {
"@expo-google-fonts/roboto-slab": "^0.2.2",
"@gorhom/bottom-sheet": "^4.3.2",
"@react-native-async-storage/async-storage": "~1.17.3",
"@react-native-community/netinfo": "^9.3.5",
"@react-native-picker/picker": "2.4.8",
"@react-navigation/bottom-tabs": "^6.3.1",
"@react-navigation/native": "^6.0.10",
"@react-navigation/native-stack": "^6.6.2",
"amazon-cognito-identity-js": "^6.0.1",
"aws-amplify": "^4.3.43",
"aws-amplify-react-native": "^7.0.1",
"axios": "^0.27.2",
"babel-plugin-inline-dotenv": "^1.7.0",
"date-fns": "^2.29.3",
"expo": "^47.0.0",
"expo-dev-client": "~2.0.1",
"expo-device": "~5.0.0",
"expo-font": "~11.0.1",
"expo-linear-gradient": "~12.0.1",
"expo-linking": "~3.2.3",
"expo-mail-composer": "~12.0.0",
"expo-notifications": "~0.17.0",
"expo-splash-screen": "~0.17.4",
"expo-status-bar": "~1.4.2",
"expo-updates": "~0.15.4",
"lottie-react-native": "5.1.4",
"moti": "^0.18.0",
"polished": "^4.2.2",
"react": "18.1.0",
"react-dom": "18.1.0",
"react-native": "0.70.5",
"react-native-gesture-handler": "~2.8.0",
"react-native-pager-view": "6.0.1",
"react-native-reanimated": "~2.12.0",
"react-native-render-html": "^6.3.4",
"react-native-safe-area-context": "4.4.1",
"react-native-screens": "~3.18.0",
"react-native-swipe-list-view": "^3.2.9",
"react-native-toast-notifications": "^3.3.1",
"react-native-web": "~0.18.7",
"react-native-webview": "11.23.1",
"styled-components": "^5.3.5"
},
"devDependencies": {
"@babel/core": "^7.19.3",
"@commitlint/cli": "^16.2.4",
"@commitlint/config-conventional": "^16.2.4",
"@faker-js/faker": "^6.1.2",
"@testing-library/jest-native": "^4.0.4",
"@testing-library/react-native": "^9.1.0",
"@types/axios": "^0.14.0",
"@types/jest": "^27.4.1",
"@types/react": "~18.0.24",
"@types/react-native": "~0.70.6",
"@types/react-test-renderer": "^18.0.0",
"@types/styled-components": "^5.1.25",
"@types/styled-components-react-native": "^5.1.3",
"@typescript-eslint/eslint-plugin": "^5.19.0",
"@typescript-eslint/parser": "^5.19.0",
"eslint": "^8.13.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.29.4",
"eslint-plugin-react-hooks": "^4.4.0",
"husky": "^7.0.0",
"jest": "^26.6.3",
"jest-expo": "^47.0.0",
"jest-styled-components": "^7.0.8",
"lint-staged": "^12.3.8",
"prettier": "^2.6.2",
"react-test-renderer": "^18.0.0",
"typescript": "^4.6.3"
},
"private": true
}