-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
110 lines (110 loc) · 4.33 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
{
"name": "@pct-org/native-app",
"version": "1.12.0",
"private": true,
"repository": {
"type": "git",
"url": "https://github.com/pct-org/native-app.git"
},
"scripts": {
"build-and-install": "yarn build:prod && yarn install-on-device:prod",
"build-and-install:dev": "yarn build:dev && yarn install-on-device:dev",
"build:dev": "cd android && ./gradlew assembleDev && cd ../",
"build:prod": "cd android && ./gradlew assembleProd && cd ../",
"postinstall": "npx jetify",
"install-on-device:dev": "adb install -r ./android/app/build/outputs/apk/dev/release/app-dev-release.apk",
"install-on-device:prod": "adb install -r ./android/app/build/outputs/apk/prod/release/app-prod-release.apk",
"lint": "eslint ./app/**/*.js",
"lint:fix": "yarn lint --fix",
"prebuild": "react-native bundle --platform android --dev false --entry-file index.js --bundle-output android/app/src/main/assets/index.android.bundle",
"start": "react-native start",
"start:android": "react-native run-android --variant=devDebug",
"test": "jest --verbose",
"test:config": "jest --c jest.config.js",
"test:coverage": "yarn test --coverage",
"test:update": "yarn test --coverage --updateSnapshot",
"test:watch": "yarn test --watch"
},
"resolutions": {
"react-native-gesture-handler": "1.8.0",
"react-native-reanimated": "1.13.0"
},
"dependencies": {
"@apollo/client": "^3.3.2",
"@react-native-community/async-storage": "1.12.1",
"@react-native-community/masked-view": "^0.1.10",
"@react-native-community/netinfo": "5.9.9",
"@react-native-community/slider": "3.0.3",
"@react-navigation/native": "5.8.10",
"@react-navigation/stack": "5.12.8",
"apollo-cache-persist": "^0.1.1",
"graphql": "15.4.0",
"graphql-tag": "2.11.0",
"hoist-non-react-statics": "3.3.2",
"i18n-js": "3.8.0",
"jsc-android": "241213.1.0",
"lottie-react-native": "3.5.0",
"prop-types": "^15.7.2",
"react": "17.0.1",
"react-native": "0.63.4",
"react-native-animatable": "1.3.3",
"react-native-device-info": "7.2.1",
"react-native-fs": "2.16.6",
"react-native-gesture-handler": "1.8.0",
"react-native-google-cast": "github:pct-org/react-native-google-cast#7e409ca7c129d628d5c2902944790bc611b64aaa",
"react-native-languages": "3.0.2",
"react-native-linear-gradient": "2.5.6",
"react-native-markdown-renderer": "^3.2.8",
"react-native-orientation": "^3.1.3",
"react-native-reanimated": "1.13.0",
"react-native-safe-area-context": "3.1.9",
"react-native-screens": "2.15.0",
"react-native-splash-screen": "3.2.0",
"react-native-static-server": "0.5.0",
"react-native-vector-icons": "7.1.0",
"react-navigation-collapsible": "5.8.1",
"reanimated-bottom-sheet": "^1.0.0-alpha.22",
"redux-persist-fs-storage": "^1.3.0",
"subscriptions-transport-ws": "0.9.18",
"update-react-native-app": "^1.3.1"
},
"devDependencies": {
"@babel/core": "7.12.9",
"@babel/plugin-proposal-class-properties": "7.12.1",
"@babel/plugin-proposal-decorators": "7.12.1",
"@babel/plugin-proposal-export-namespace-from": "7.12.1",
"@babel/plugin-proposal-object-rest-spread": "7.12.1",
"@babel/plugin-transform-flow-strip-types": "7.12.1",
"@babel/plugin-transform-runtime": "7.12.1",
"@babel/preset-react": "7.12.7",
"@babel/runtime": "7.12.5",
"@commitlint/cli": "11.0.0",
"@commitlint/config-conventional": "11.0.0",
"babel-eslint": "10.1.0",
"babel-plugin-inline-import": "^3.0.0",
"babel-plugin-module-resolver": "4.0.0",
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "1.15.5",
"eslint": "7.14.0",
"eslint-config-airbnb": "18.2.1",
"eslint-config-standard": "16.0.2",
"eslint-config-standard-react": "11.0.1",
"eslint-plugin-babel": "5.3.1",
"eslint-plugin-import": "2.22.1",
"eslint-plugin-jest": "24.1.3",
"eslint-plugin-jsx-a11y": "6.4.1",
"eslint-plugin-node": "11.1.0",
"eslint-plugin-promise": "4.2.1",
"eslint-plugin-react": "7.21.5",
"eslint-plugin-standard": "5.0.0",
"get-dev-paths": "^0.1.1",
"husky": "4.3.0",
"jest": "26.6.3",
"jest-enzyme": "^7.1.2",
"jest-react-native": "^18.0.0",
"metro-react-native-babel-preset": "0.64.0",
"mock-async-storage": "^2.2.0",
"react-dom": "^17.0.1",
"react-test-renderer": "17.0.1"
}
}