-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 2.4 KB
/
Copy pathpackage.json
File metadata and controls
79 lines (79 loc) · 2.4 KB
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
{
"name": "taskstak",
"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",
"test": "jest"
},
"dependencies": {
"@ptomasroos/react-native-multi-slider": "^2.2.2",
"@react-native-async-storage/async-storage": "~1.17.3",
"@react-native-community/datetimepicker": "6.5.2",
"@react-navigation/bottom-tabs": "^6.3.2",
"@react-navigation/native": "6.0.11",
"@react-navigation/native-stack": "6.7.0",
"@reduxjs/toolkit": "1.9.0",
"expo": "47.0.0",
"expo-status-bar": "~1.4.2",
"mock-async-storage": "2.2.0",
"react": "18.1.0",
"react-dom": "18.1.0",
"react-native": "0.70.5",
"react-native-get-random-values": "~1.8.0",
"react-native-modal": "13.0.1",
"react-native-picker-weekday": "1.1.2",
"react-native-safe-area-context": "4.4.1",
"react-native-screens": "~3.18.0",
"react-native-svg": "13.4.0",
"react-native-vector-icons": "9.2.0",
"react-native-web": "~0.18.7",
"react-redux": "8.0.5",
"react-test-renderer": "18.1.0",
"redux": "4.2.0",
"redux-logger": "^3.0.6",
"redux-persist": "6.0.0",
"redux-thunk": "2.4.2",
"uuid": "8.3.2",
"expo-navigation-bar": "~2.0.1",
"expo-font": "~11.0.1",
"expo-app-loading": "~2.1.1"
},
"devDependencies": {
"@babel/core": "7.19.3",
"@babel/preset-env": "7.18.10",
"@testing-library/jest-native": "4.0.11",
"@testing-library/react-native": "11.0.0",
"@types/jest": "28.1.6",
"@types/react": "~18.0.24",
"@types/react-native": "~0.70.6",
"@types/react-native-vector-icons": "6.4.11",
"@types/react-test-renderer": "18.0.0",
"@types/redux-logger": "^3.0.9",
"@types/uuid": "8.3.4",
"eslint": "8.2.0",
"eslint-config-airbnb": "19.0.4",
"eslint-config-node": "4.1.0",
"eslint-config-prettier": "8.5.0",
"eslint-plugin-import": "2.25.3",
"eslint-plugin-jsx-a11y": "6.5.1",
"eslint-plugin-node": "11.1.0",
"eslint-plugin-prettier": "4.2.1",
"eslint-plugin-react": "7.28.0",
"eslint-plugin-react-hooks": "4.3.0",
"jest-expo": "47.0.0",
"prettier": "2.7.1",
"typescript": "4.6.3"
},
"jest": {
"preset": "react-native",
"setupFilesAfterEnv": [
"<rootDir>/setup-tests.js"
]
},
"private": true
}