forked from NES-Digital-Service/protect-scotland
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
124 lines (124 loc) · 3.98 KB
/
package.json
File metadata and controls
124 lines (124 loc) · 3.98 KB
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
116
117
118
119
120
121
122
123
124
{
"name": "ProtectScotland",
"version": "1.0.0",
"private": true,
"scripts": {
"android": "react-native run-android",
"ios": "react-native run-ios",
"start": "react-native start",
"test": "jest",
"lint": "eslint . --ext .js,.jsx,.ts,.tsx",
"lint:fix": "eslint . --ext .js,.jsx,.ts,.tsx --fix",
"test:e2e:ios": "npm run test:e2e:build:ios && npm run test:e2e:run:ios",
"test:e2e:build:ios": "detox build --configuration=ios.sim.debug",
"test:e2e:run:ios": "detox test --configuration=ios.sim.debug",
"test:e2e:android": "echo 'TODO' && exit 0",
"typecheck": "tsc -p tsconfig.json",
"postinstall": "./postinstall.sh"
},
"dependencies": {
"@react-native-community/async-storage": "^1.12.1",
"@react-native-community/datetimepicker": "^3.0.5",
"@react-native-community/masked-view": "^0.1.10",
"@react-native-community/picker": "^1.8.1",
"@react-native-community/push-notification-ios": "^1.7.3",
"@react-navigation/bottom-tabs": "^5.11.1",
"@react-navigation/native": "^5.8.10",
"@react-navigation/stack": "5.12.8",
"art": "^0.10.3",
"babel-plugin-dotenv-import": "^2.1.0",
"babel-plugin-transform-remove-console": "^6.9.4",
"date-fns": "^2.16.1",
"expo-asset": "^8.1.7",
"expo-crypto": "^8.3.0",
"expo-font": "^8.2.2",
"expo-haptics": "^8.3.0",
"expo-intent-launcher": "^8.3.0",
"expo-localization": "^9.0.0",
"expo-secure-store": "^9.1.0",
"expo-web-browser": "^8.5.0",
"exponential-backoff": "^3.1.0",
"formik": "^2.2.5",
"i18next": "^19.8.3",
"lodash": "^4.17.20",
"react": "17.0.1",
"react-i18next": "^11.7.3",
"react-native": "0.63.3",
"react-native-dotenv": "^2.4.2",
"react-native-easy-markdown": "^2.0.0",
"react-native-exposure-notification-service": "^1.2.9",
"react-native-gesture-handler": "^1.8.0",
"react-native-google-safetynet": "^1.0.0",
"react-native-ios11-devicecheck": "^0.0.3",
"react-native-loading-spinner-overlay": "^2.0.0",
"react-native-modal": "^11.5.6",
"react-native-modal-datetime-picker": "^9.1.0",
"react-native-permissions": "^2.2.2",
"react-native-push-notification": "^6.1.3",
"react-native-safe-area-context": "^3.1.9",
"react-native-screens": "2.13.0",
"react-native-ssl-pinning": "1.4.9",
"react-native-svg": "^12.1.0",
"react-native-svg-charts": "^5.4.0",
"react-native-unimodules": "^0.12.0"
},
"devDependencies": {
"@babel/core": "^7.12.3",
"@babel/runtime": "^7.12.5",
"@react-native-community/eslint-config": "^2.0.0",
"@types/detox": "^16.4.2",
"@types/jasmine": "^3.6.1",
"@types/jest": "^26.0.20",
"@types/lodash": "^4.14.165",
"@types/react-native": "^0.63.35",
"@types/react-native-dotenv": "^0.2.0",
"@types/react-native-loading-spinner-overlay": "^0.5.2",
"@types/react-native-push-notification": "^5.0.5",
"@types/react-native-svg-charts": "^5.0.6",
"@types/react-test-renderer": "17.0.0",
"@typescript-eslint/eslint-plugin": "^4.10.0",
"@typescript-eslint/parser": "^4.10.0",
"babel-jest": "^26.6.3",
"detox": "^17.12.0",
"eslint": "^7.13.0",
"eslint-plugin-detox": "^1.0.0",
"eslint-plugin-jest": "^24.1.3",
"eslint-plugin-prettier": "^3.3.0",
"eslint-plugin-react-native-a11y": "^2.0.3",
"husky": "^4.3.0",
"jest": "^26.6.3",
"jest-circus": "^26.6.3",
"lint-staged": "^10.5.1",
"metro-react-native-babel-preset": "^0.64.0",
"prettier": "^2.1.1",
"react-test-renderer": "17.0.1",
"ts-jest": "^26.4.4",
"typescript": "^4.1.3"
},
"jest": {
"preset": "react-native",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json",
"node"
]
},
"lint-staged": {
"*.{js,ts,tsx}": [
"prettier --write",
"eslint --cache --fix"
],
"*.{css,md,json}": [
"prettier --write",
"git add"
]
},
"husky": {
"hooks": {
"pre-commit": "yarn typecheck && lint-staged"
}
}
}