This repository has been archived by the owner on Feb 13, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
97 lines (97 loc) · 3.28 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
{
"name": "PMA",
"version": "0.0.1",
"private": true,
"scripts": {
"schema": "dotenv \"graphql codegen --project apollo-ast\"",
"codegen": "dotenv \"graphql codegen --project default --overwrite\"",
"codegen:watch": "dotenv \"graphql codegen --project default --overwrite --watch --errors-only\"",
"react-native": "react-native",
"start": "run-p codegen:watch type-check:watch \"react-native start\"",
"android": "run-s codegen \"react-native run-android\"",
"ios": "run-s codegen \"react-native run-ios\"",
"test": "jest",
"lint": "prettier --write src && eslint . --fix",
"type-check": "tsc --noEmit",
"type-check:watch": "tsc --noEmit --watch --preserveWatchOutput",
"apk": "cd android && ./gradlew assembleRelease"
},
"dependencies": {
"@apollo/react-hooks": "^4.0.0",
"@react-native-community/async-storage": "^1.12.1",
"@react-native-community/masked-view": "^0.1.10",
"@react-navigation/bottom-tabs": "^5.11.2",
"@react-navigation/compat": "^5.3.10",
"@react-navigation/drawer": "^5.11.4",
"@react-navigation/native": "^5.8.10",
"@react-navigation/stack": "^5.12.8",
"@types/apollo-upload-client": "^14.1.0",
"@types/react-native-vector-icons": "^6.4.6",
"accordion-collapse-react-native": "^1.0.0",
"apollo-cache-inmemory": "^1.6.6",
"apollo-client": "^2.6.10",
"apollo-link-http": "^1.5.17",
"apollo-upload-client": "^14.1.3",
"dayjs": "1.10.1",
"graphql": "15.4.0",
"graphql-tag": "^2.11.0",
"jwt-decode": "^3.1.2",
"qs": "6.9.4",
"react": "16.13.1",
"react-apollo": "^3.1.5",
"react-native": "0.63.4",
"react-native-config": "1.4.1",
"react-native-document-picker": "^4.2.0",
"react-native-geolocation-service": "5.1.1",
"react-native-gesture-handler": "^1.9.0",
"react-native-image-picker": "^3.1.2",
"react-native-mime-types": "^2.3.0",
"react-native-reanimated": "^1.13.2",
"react-native-safe-area-context": "^3.1.9",
"react-native-screens": "^2.16.1",
"react-native-svg": "12.1.0",
"react-native-vector-icons": "^7.1.0"
},
"devDependencies": {
"@babel/core": "^7.8.4",
"@babel/runtime": "^7.8.4",
"@graphql-cli/codegen": "1.17.17",
"@graphql-codegen/schema-ast": "1.18.1",
"@graphql-codegen/typescript": "1.20.0",
"@graphql-codegen/typescript-operations": "1.17.13",
"@graphql-codegen/typescript-react-apollo": "2.2.1",
"@react-native-community/eslint-config": "^1.1.0",
"@types/qs": "6.9.5",
"@types/react": "^17.0.0",
"@types/react-native": "^0.63.42",
"@types/react-native-document-picker": "^2.0.1",
"babel-jest": "^25.1.0",
"dotenv": "^8.2.0",
"dotenv-cli": "^4.0.0",
"eslint": "^6.5.1",
"graphql-cli": "4.1.0",
"graphql-config": "3.2.0",
"husky": "4.3.6",
"jest": "^25.1.0",
"lint-staged": "10.5.3",
"metro-react-native-babel-preset": "^0.59.0",
"npm-run-all": "4.1.5",
"react-native-svg-transformer": "0.14.3",
"react-native-typescript-transformer": "^1.2.13",
"react-test-renderer": "16.13.1",
"typescript": "^4.1.3"
},
"jest": {
"preset": "react-native"
},
"prettier": {
"endOfLine": "lf",
"semi": true,
"singleQuote": true
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
}
}