This repository has been archived by the owner on May 23, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
124 lines (124 loc) · 4.17 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
116
117
118
119
120
121
122
123
124
{
"name": "VerifierAppRN",
"version": "1.4.1",
"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 --color --format=table",
"lint:fix": "yarn lint --fix && yarn format",
"format": "prettier --write '**/*.{ts,tsx,js}'",
"license:export": "license-checker --markdown --out ./license.md --customPath ./3rd-party-licenses_format.json && npx [email protected] --only-direct-dependency --json > license-direct-dependency.json",
"license:check": "license-checker --excludePrivatePackages --excludeScopes '@mattrglobal' --excludePackages '[email protected]' --onlyAllow 'MIT;BSD;Apache-2.0;Unlicense;ISC;Artistic-2.0;WTFPL;CC-BY-3.0;CC-BY-4.0;CC0-1.0;Public Domain' --summary",
"prepare": "husky install",
"version": "conventional-changelog -p angular -i CHANGELOG.md -s"
},
"dependencies": {
"@aws-amplify/analytics": "5.1.4",
"@aws-amplify/auth": "4.3.14",
"@aws-amplify/core": "4.3.6",
"@mattrglobal/vc-cwt-verifier": "1.0.3",
"@react-native-async-storage/async-storage": "1.15.11",
"@react-native-community/netinfo": "6.1.0",
"@react-navigation/native": "6.0.2",
"@react-navigation/stack": "6.0.7",
"@reduxjs/toolkit": "1.6.1",
"base32-decode": "1.0.0",
"date-fns": "2.25.0",
"i18next": "21.3.2",
"lottie-ios": "3.2.3",
"lottie-react-native": "4.1.3",
"neverthrow": "4.2.2",
"path": "0.12.7",
"react": "17.0.2",
"react-i18next": "11.12.0",
"react-native": "0.65.1",
"react-native-barcode-mask": "1.2.4",
"react-native-camera": "4.2.1",
"react-native-device-info": "8.4.5",
"react-native-fs": "2.18.0",
"react-native-gesture-handler": "2.2.0",
"react-native-haptic-feedback": "1.13.0",
"react-native-localize": "2.1.5",
"react-native-mmkv-storage": "0.6.6",
"react-native-pager-view": "5.4.8",
"react-native-permissions": "3.0.5",
"react-native-ringer-mode": "2.0.0",
"react-native-safe-area-context": "3.3.2",
"react-native-screens": "3.7.2",
"react-native-sound": "0.11.1",
"react-native-splash-screen": "3.2.0",
"react-native-v8": ">=0.65.1-patch.0 <0.65.2",
"react-native-vector-icons": "9.0.0",
"react-native-version-check": "3.4.2",
"react-native-webview": "11.14.1",
"react-redux": "7.2.5",
"redux-persist": "6.0.0"
},
"devDependencies": {
"@babel/core": "7.12.9",
"@babel/runtime": "7.12.5",
"@commitlint/cli": "12.0.1",
"@commitlint/config-conventional": "12.0.1",
"@react-native-community/eslint-config": "2.0.0",
"@types/jest": "26.0.23",
"@types/ramda": "0.27.45",
"@types/react-native": "0.65.8",
"@types/react-native-vector-icons": "6.4.9",
"@types/react-native-version-check": "3.4.3",
"@types/react-redux": "7.1.18",
"@types/react-test-renderer": "16.9.2",
"babel-jest": "26.6.3",
"conventional-changelog": "3.1.24",
"conventional-changelog-cli": "2.1.1",
"cz-conventional-changelog": "3.3.0",
"eslint": "7.32.0",
"eslint-plugin-functional": "3.7.2",
"eslint-plugin-header": "3.1.1",
"eslint-plugin-import": "2.24.2",
"eslint-plugin-jsdoc": "36.1.0",
"eslint-plugin-prettier": "4.0.0",
"eslint-plugin-tsdoc": "0.2.14",
"fast-glob": "3.2.7",
"husky": "7.0.2",
"jest": "26.6.3",
"license-checker-commit": "25.0.2",
"metro-react-native-babel-preset": "0.66.0",
"prettier": "2.4.1",
"pretty-quick": "3.1.1",
"ramda": "0.27.1",
"react-native-codegen": "0.0.7",
"react-native-dotenv": "3.2.0",
"react-native-svg": "12.1.1",
"react-native-svg-transformer": "0.14.3",
"react-test-renderer": "17.0.2",
"ts-node": "10.3.0",
"typescript": "4.4.3"
},
"resolutions": {
"@types/react": "^17"
},
"jest": {
"preset": "react-native",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json",
"node"
]
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
}
}