-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
68 lines (68 loc) · 2.4 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
{
"name": "senior-dialer-app",
"version": "2.0.0",
"repository": {
"type": "git",
"url": "git+https://github.com/saihaj/SeniorDialerApp.git"
},
"bugs": {
"url": "https://github.com/saihaj/SeniorDialerApp/issues"
},
"homepage": "https://github.com/saihaj/SeniorDialerApp#readme",
"license": " AGPL-3.0",
"scripts": {
"start:android": "react-native run-android",
"start:ios": "react-native run-ios",
"start": "react-native start",
"start-sims": "npm run start:ios && npm run start:android",
"test": "jest --color --watch",
"clean:android": "cd android && ./gradlew clean",
"clean:ios": "cd ios && rimraf Pods && xcodebuild clean",
"clean": "react-native-clean-project",
"lint": "eslint . --ext .js,.jsx,.json --color",
"install-assets": "react-native link",
"install-pods": "cd ios && pod install",
"postinstall": "pod-install ios",
"bump-patch": "npm version patch --no-git-tag-version && fastlane bump",
"bump-minor": "npm version minor --no-git-tag-version && fastlane bump",
"bump-major": "npm version major --no-git-tag-version && fastlane bump"
},
"dependencies": {
"@react-native-community/async-storage": "^1.12.1",
"@react-native-community/masked-view": "^0.1.11",
"@react-navigation/native": "^5.9.4",
"@react-navigation/stack": "^5.14.5",
"lodash.find": "^4.6.0",
"prop-types": "^15.7.2",
"react": "17.0.1",
"react-native": "0.70.6",
"react-native-gesture-handler": "^1.10.3",
"react-native-immediate-phone-call": "^2.0.0",
"react-native-reanimated": "^2.10.0",
"react-native-responsive-fontsize": "^0.5.0",
"react-native-safe-area-context": "^3.2.0",
"react-native-screens": "^3.2.0",
"react-native-vector-icons": "^8.1.0"
},
"devDependencies": {
"@babel/core": "^7.12.9",
"@babel/runtime": "^7.12.5",
"@react-native-community/eslint-config": "^2.0.0",
"babel-jest": "^26.6.3",
"eslint": "^7.14.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-plugin-import": "^2.23.2",
"eslint-plugin-json": "^3.0.0",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-react": "^7.23.2",
"eslint-plugin-react-hooks": "^4.2.0",
"jest": "^26.6.3",
"metro-react-native-babel-preset": "^0.64.0",
"pod-install": "^0.1.23",
"react-native-clean-project": "^3.6.2",
"react-test-renderer": "17.0.1"
},
"jest": {
"preset": "react-native"
}
}