-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
96 lines (96 loc) · 2.62 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
{
"name": "spotifiuby",
"version": "1.0.1",
"main": "index.js",
"scripts": {
"start": "expo start --dev-client",
"startTunnel": "expo start --tunnel --dev-client",
"cache": "expo start -c",
"android": "expo run:android",
"android -d": "expo run:android -d",
"ios": "expo run:ios",
"web": "expo start --web",
"customWeb": "expo customize:web",
"lint": "eslint src",
"test": "NODE_ENV=test jest --verbose --silent",
"test:coverage": "npm run test -- --coverage",
"build": "cd android && ./gradlew assembleRelease"
},
"dependencies": {
"@react-native-async-storage/async-storage": "~1.17.3",
"async-mutex": "^0.3.2",
"expo": "^45.0.0",
"expo-auth-session": "~3.6.1",
"expo-clipboard": "~3.0.1",
"expo-dev-client": "~1.0.0",
"expo-document-picker": "~10.2.1",
"expo-file-system": "~14.0.0",
"expo-notifications": "~0.15.4",
"expo-random": "~12.2.0",
"expo-system-ui": "~1.2.0",
"firebase": "^9.7.0",
"prop-types": "^15.8.1",
"react": "17.0.2",
"react-dom": "17.0.2",
"react-hook-form": "^7.30.0",
"react-native": "0.68.2",
"react-native-agora": "^3.7.0",
"react-native-paper": "^4.12.0",
"react-native-paper-form-builder": "^2.1.2",
"react-native-safe-area-context": "4.2.4",
"react-native-screens": "~3.13.1",
"react-native-toast-notifications": "^3.2.3",
"react-native-vector-icons": "^9.1.0",
"react-native-web": "0.17.7",
"swr": "^1.3.0"
},
"devDependencies": {
"@babel/core": "^7.12.9",
"@expo/webpack-config": "~0.16.21",
"@react-navigation/native": "^6.0.10",
"@react-navigation/native-stack": "^6.6.1",
"eslint": "^8.13.0",
"eslint-plugin-react": "^7.29.4",
"eslint-plugin-react-native": "^4.0.0",
"expo-av": "~11.2.3",
"expo-cli": "^5.3.1",
"jest": "^26.6.3",
"react-native-paper-dropdown": "^1.0.7",
"react-native-safe-area-context": "4.2.4",
"react-native-screens": "~3.11.1",
"react-native-star-rating-widget": "^1.2.0",
"react-native-svg": "^12.3.0"
},
"private": true,
"eslintConfig": {
"env": {
"es2021": true,
"jest": true
},
"extends": [
"eslint:recommended",
"plugin:react/recommended"
],
"parserOptions": {
"ecmaFeatures": {
"jsx": true
},
"ecmaVersion": "latest",
"sourceType": "module"
},
"plugins": [
"react",
"react-native"
],
"rules": {
"react/react-in-jsx-scope": "off"
},
"globals": {
"global": true,
"fetch": false,
"console": false,
"toast": true,
"__DEV__": true
}
}
}