-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
115 lines (115 loc) · 3.94 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
112
113
114
115
{
"name": "democracy-app",
"version": "1.4.0",
"private": true,
"scripts": {
"android": "react-native run-android",
"ios": "react-native run-ios",
"start": "react-native start",
"test": "jest",
"lint": "yarn lint:ts && yarn lint:es",
"lint:ts": "tsc --noEmit",
"lint:es": "eslint . --ext .js,.jsx,.ts,.tsx",
"lint:exports": "ts-unused-exports ./tsconfig.json --excludePathsFromReport=generated --excludePathsFromReport=assets/svgs/constituencies",
"generate": "graphql-codegen --config codegen.yml"
},
"dependencies": {
"@apollo/client": "^3.3.4",
"@react-native-community/art": "^1.2.0",
"@react-native-community/async-storage": "^1.12.0",
"@react-native-community/masked-view": "^0.1.10",
"@react-native-community/progress-bar-android": "^1.0.3",
"@react-native-community/progress-view": "^1.1.1",
"@react-native-community/push-notification-ios": "^1.7.3",
"@react-navigation/drawer": "^5.9.0",
"@react-navigation/material-top-tabs": "^5.2.16",
"@react-navigation/native": "^5.7.3",
"@react-navigation/stack": "^5.9.0",
"@welldone-software/why-did-you-render": "^6.0.3",
"d3": "^6.1.1",
"d3-scale": "^3.2.2",
"graphql": "^15.3.0",
"graphql-anywhere": "^4.2.7",
"jwt-decode": "^3.0.0-beta.2",
"lodash": "^4.17.20",
"moment": "^2.29.0",
"pinar": "^0.11.0",
"react": "16.13.1",
"react-content-loader": "^5.1.4",
"react-native": "0.63.4",
"react-native-app-intro-slider": "^4.0.4",
"react-native-appstate-hook": "^1.0.4",
"react-native-camera": "^3.40.0",
"react-native-config": "^1.4.1",
"react-native-device-info": "^7.0.2",
"react-native-gesture-handler": "^1.7.0",
"react-native-keychain": "^6.2.0",
"react-native-linear-gradient": "^2.5.6",
"react-native-markdown-view": "^1.1.4",
"react-native-pdf": "^6.2.1",
"react-native-permissions": "^3.0.0",
"react-native-progress": "^4.1.2",
"react-native-push-notification": "^6.1.3",
"react-native-qrcode-svg": "^6.0.6",
"react-native-rate": "^1.2.4",
"react-native-reanimated": "^1.13.0",
"react-native-safe-area-context": "^3.1.7",
"react-native-screens": "^2.10.1",
"react-native-search-bar": "^3.5.1",
"react-native-sha256": "^1.3.6",
"react-native-share": "^4.0.1",
"react-native-svg": "^12.1.0",
"react-native-tab-view": "^2.15.1",
"rn-fetch-blob": "^0.12.0",
"speakingurl": "^14.0.1",
"styled-components": "^5.2.0",
"victory-native": "^35.0.1"
},
"devDependencies": {
"@babel/core": "^7.8.4",
"@babel/runtime": "^7.8.4",
"@graphql-codegen/cli": "^1.19.4",
"@graphql-codegen/fragment-matcher": "^2.0.1",
"@graphql-codegen/introspection": "^1.18.1",
"@graphql-codegen/typescript": "^1.19.0",
"@graphql-codegen/typescript-operations": "^1.17.12",
"@graphql-codegen/typescript-react-apollo": "^2.2.1",
"@react-native-community/eslint-config": "^1.1.0",
"@types/d3": "^6.2.0",
"@types/jest": "^25.2.3",
"@types/jwt-decode": "^3.1.0",
"@types/lodash": "^4.14.165",
"@types/react-native": "^0.63.2",
"@types/react-native-push-notification": "^5.0.5",
"@types/react-native-share": "^3.3.0",
"@types/react-test-renderer": "^16.9.2",
"@types/speakingurl": "^13.0.2",
"@types/styled-components": "^5.1.3",
"@typescript-eslint/eslint-plugin": "^2.27.0",
"@typescript-eslint/parser": "^2.27.0",
"babel-jest": "^25.1.0",
"babel-plugin-module-resolver": "^4.0.0",
"eslint": "^6.5.1",
"eslint-plugin-prettier": "^3.1.4",
"jest": "^25.1.0",
"metro-react-native-babel-preset": "^0.59.0",
"prettier": "^2.0.4",
"react-test-renderer": "16.13.1",
"ts-unused-exports": "^7.0.0",
"typescript": "^3.8.3"
},
"resolutions": {
"styled-components": "^5"
},
"jest": {
"preset": "react-native",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json",
"node"
]
}
}