-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
111 lines (111 loc) · 3.82 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
{
"version": "0.0.3",
"scripts": {
"release": "yarn standard-version",
"release:patch": "yarn standard-version --release-as patch",
"release:minor": "yarn standard-version --release-as minor",
"release:major": "yarn standard-version --release-as major",
"publish": "expo publish",
"pushRelease": "git push --follow-tags origin develop",
"build:ios": "expo build:ios --non-interactive --no-publish",
"downloadIPA": "curl -o ./ios/app.ipa $(expo url:ipa --non-interactive)",
"pilot": "cd ios; bundle exec fastlane beta; cd ..",
"testflight": "npm-run-all release publish pushRelease build:ios downloadIPA pilot",
"android": "react-native run-android",
"ios": "react-native run-ios",
"web": "expo start --web",
"start": "react-native start",
"eslint": "eslint . --ext .tsx,.ts",
"prettier": "prettier --check ./src/**/*.ts*",
"lint": "npm-run-all --parallel eslint prettier",
"test": "jest",
"tsc": "tsc -noEmit",
"git:add": "git add .",
"postinstall": "cd ios; pod install; cd ..",
"postversion": "react-native-version",
"deploy": "./deploy"
},
"husky": {
"hooks": {
"pre-commit": "npm-run-all lint tsc git:add",
"pre-push": "npm-run-all --parallel test lint tsc"
}
},
"dependencies": {
"@apollo/react-hooks": "^3.1.3",
"@react-native-community/masked-view": "^0.1.7",
"@react-navigation/bottom-tabs": "^5.0.6",
"@react-navigation/native": "^5.0.6",
"@react-navigation/stack": "^5.0.6",
"apollo-boost": "^0.4.7",
"apollo-cache-inmemory": "^1.6.5",
"apollo-client": "^2.6.8",
"apollo-upload-client": "^12.1.0",
"expo": "~36.0.0",
"expo-asset": "^8.0.0",
"expo-blur": "^8.0.0",
"expo-camera": "^8.0.0",
"expo-device": "^2.0.0",
"expo-file-system": "^8.0.0",
"expo-image-manipulator": "^8.0.0",
"expo-location": "^8.0.0",
"expo-sharing": "^8.0.0",
"graphql": "^14.6.0",
"graphql-upload": "^10.0.0",
"moment": "^2.24.0",
"react": "~16.9.0",
"react-dom": "~16.9.0",
"react-native": "~0.61.4",
"react-native-card-flip": "^1.0.6",
"react-native-expo-image-cache": "^4.1.0",
"react-native-gesture-handler": "^1.6.0",
"react-native-keyboard-aware-scrollview": "^2.1.0",
"react-native-paper": "^3.6.0",
"react-native-reanimated": "^1.7.0",
"react-native-safe-area-context": "^0.7.3",
"react-native-screens": "^2.2.0",
"react-native-size-matters": "^0.3.0",
"react-native-unimodules": "~0.7.0",
"react-native-web": "~0.11.7"
},
"devDependencies": {
"@babel/core": "~7.6.0",
"@react-native-community/eslint-config": "^0.0.7",
"@types/react": "~16.9.0",
"@types/react-native": "^0.61.16",
"@typescript-eslint/eslint-plugin": "^2.20.0",
"@typescript-eslint/parser": "^2.20.0",
"babel-eslint": "^10.0.3",
"babel-plugin-module-resolver": "^4.0.0",
"babel-preset-expo": "~8.0.0",
"cross-env": "^7.0.0",
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.15.2",
"eslint": "^6.8.0",
"eslint-config-airbnb": "^18.0.1",
"eslint-config-prettier": "^6.10.0",
"eslint-import-resolver-babel-module": "^5.1.2",
"eslint-plugin-detox": "^1.0.0",
"eslint-plugin-import": "^2.20.1",
"eslint-plugin-jest": "^23.7.0",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-prettier": "^3.1.2",
"eslint-plugin-react": "^7.18.3",
"eslint-plugin-react-hooks": "^2.4.0",
"eslint-plugin-react-native": "^3.8.1",
"husky": "^4.2.3",
"jest-enzyme": "^7.1.2",
"jest-expo": "~36.0.1",
"lint-staged": "^10.0.7",
"npm-run-all": "^4.1.5",
"prettier": "^1.19.1",
"react-native-version": "^3.2.0",
"standard-version": "^7.1.0",
"standard-version-expo": "^1.0.1",
"typescript": "~3.6.3"
},
"jest": {
"preset": "react-native"
},
"private": true
}